本帖最後由 tonyh 於 2017-7-5 09:44 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main() //主函式
- {
- int x=23, y=7;
- 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;
- system("pause");
- return 0;
- }
複製代碼 |