返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     cout<<"請輸入x"<<endl;
  9.     cin>>x;
  10.     cout<<"請輸入y"<<endl;
  11.     cin>>x;
  12.       if(x>y)
  13.     {
  14.         cout<<"x>y"<<endl;
  15.     }else if(x<y)
  16.     {
  17.         cout<<"x<y"<<endl;  
  18.     }else
  19.     {
  20.         cout<<"x=y"<<endl;     
  21.     }
  22.    
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

返回列表