本帖最後由 tonyh 於 2015-1-30 11:08 編輯
加, 減, 乘, 除, 取餘數- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x=5, y=2; //宣告整數型態的變數x與y初始值分別為5與2
- 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;
- }
複製代碼 |