返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     cout<<"請輸入x:";
  9.     cin>>x;
  10.     cout<<"請輸入y:";
  11.     cin>>y;
  12.     cout <<"x="<<x<<endl;
  13.     cout <<"y="<<y<<endl;

  14.     if(x > y)
  15.     {
  16.        cout<<"x 大於 y"<<endl;
  17.     }
  18.     else if(x < y)
  19.     {
  20.        cout<<"x 小於 y"<<endl;
  21.     }
  22.     else
  23.     {
  24.        cout<<"x 等於 y"<<endl;
  25.     }

  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

  1. #include<iostream>         
  2. #include<cstdlib>           
  3. using namespace std;      
  4. int main()                 
  5. {
  6. int x;
  7.     int y;
  8.     cout<<"請輸入x:";
  9.     cin>> x,
  10.     cout<<"請輸入x:";
  11.     cin>> y,
  12.     cout<<"x="<<x<<endl;
  13.     cout<<"y="<<y<<endl;
  14.     if(x>y)
  15.     {
  16.     cout<<"x 大於 y"<<endl;
  17.     }
  18.      else if(x<y)     
  19.     {
  20.          cout<<"x小於y"<<endl;
  21.          }
  22.     else
  23.     {
  24.         cout<<"x等於y"<<endl;
  25.       }
  26.    
  27.      
  28.     system("pause");
  29.     return 0;        
  30. }
複製代碼

TOP

返回列表