返回列表 發帖

五則運算

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int x;
  6.   int y;
  7.   cout<<"請輸入x值:";
  8.   cin>>x;
  9.   cout<<endl;
  10.   cout<<"請輸入y值:";
  11.   cin>>y;
  12.   cout<<"您剛輸入的x是:"<<x<<endl;
  13.   cout<<"您剛輸入的y為:"<<y<<endl;  
  14.   cout<<"x和y的五則運算如下:"<<endl;
  15.   cout<<"x+y="<<x+y<<endl;  
  16.   cout<<"x-y="<<x-y<<endl;
  17.   cout<<"x*y="<<x*y<<endl;
  18.   cout<<"x/y="<<x/y<<endl;
  19.   cout<<"x%y="<<x%y<<endl;
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

返回列表