本帖最後由 tonyh 於 2015-7-24 14:57 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數- #include<iostream>
- #include<cstdlib>
- #include<cmath>
- using namespace std;
- int main()
- {
- int x=7,y=3;
- cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
- cout<<"x+y="<<x+y<<endl;
- cout<<"x-y="<<x-y<<endl;
- cout<<"x*y="<<x*y<<endl;
- cout<<"x/y="<<x/y<<endl;
- cout<<"x%y="<<x%y<<endl;
- cout<<sqrt(4)<<endl;
- system("pause");
- return 0;
- }
複製代碼 |