返回列表 發帖

if...else if...else 判斷式

本帖最後由 tonyh 於 2016-7-11 10:17 編輯

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

返回列表