- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- //五則預算
- //int x;
- //int y;
- 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;
- }
複製代碼 |