本帖最後由 許婷芳 於 2020-7-11 20:29 編輯
+ 加
- 減
* 乘
/ 除
% 取餘數
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x=10,y=3; //宣告x=10和y=3
- cout<<"當x等於10,y等於3時..."<<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;
- }
複製代碼 |