本帖最後由 許婷芳 於 2020-1-21 15: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; // 數學1x5 --> 程式1*5
- cout<<"x/y="<<x/y<<endl;
- cout<<"x%y="<<x%y<<endl; // %是取餘數的意思 20/6=3 20%6=2
- system("pause");
- return 0;
- }
複製代碼 |