- #include<iostream>
- using namespace std;
- int main()
- {
- int x;
- int y;
- cout<<"請輸入x的值:";
- cin>>x;
- cout<<endl;
- cout<<"請輸入y的值:";
- cin>>y;
-
- cout<<"你剛輸入的值是"<<x<<"y為"<<y<<endl;
- cout<<"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;
- cout<<"x%y="<<x%y<<endl;
-
-
-
-
- system("pause");
- return 0;
- }
複製代碼 |