- #include<cstdlib>
- #include<iostream>
- using namespace std;
- int main()
- {
- int x,y;
- cout<<"輸入x的值"<<endl;
- cin>>x;
- cout<<"輸入y的值"<<endl;
- cin>>y;
- 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;
- }
複製代碼 |