Board logo

標題: if...else if...else 判斷式 [打印本頁]

作者: tonyh    時間: 2017-1-25 09:34     標題: if...else if...else 判斷式

本帖最後由 tonyh 於 2017-1-25 10:07 編輯

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

作者: 吳翊愷    時間: 2017-1-25 09:44

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

作者: 王子丹    時間: 2017-1-25 09:45

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a,b;   
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;

  11.     if(a>b)
  12.     {
  13.         cout<<"a大於b"<<endl;   
  14.     }
  15.     else if(a<b)
  16.     {
  17.         cout<<"a小於b"<<endl;
  18.     }
  19.     else
  20.     {
  21.         cout<<"a等於b"<<endl;
  22.     }
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

作者: 宋禹禛    時間: 2017-1-25 09:46

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

作者: 莊旻叡    時間: 2017-1-25 09:46

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

作者: 呂承霖    時間: 2017-1-25 09:48

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

作者: 黃珖瑋    時間: 2017-1-25 09:49

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

作者: 黃楷哲    時間: 2017-1-25 09:52

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a,b;   
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;

  11.     if(a>b)
  12.     {
  13.         cout<<"a大於b"<<endl;   
  14.     }
  15.     else if(a<b)
  16.     {
  17.         cout<<"a小於b"<<endl;
  18.     }
  19.     else
  20.     {
  21.         cout<<"a等於b"<<endl;
  22.     }
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

作者: 沈竑希    時間: 2017-1-25 09:53

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

作者: 黃子晏    時間: 2017-1-25 09:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a,b;   
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;

  11.     if(a>b)
  12.     {
  13.         cout<<"a大於b"<<endl;   
  14.     }
  15.     else if(a<b)
  16.     {
  17.         cout<<"a小於b"<<endl;
  18.     }
  19.     else
  20.     {
  21.         cout<<"a等於b"<<endl;
  22.     }
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

作者: 黃鼎家    時間: 2017-1-25 09:54

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

作者: 楊修禹    時間: 2017-1-25 09:55

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

作者: 余孟儒    時間: 2017-1-25 10:04

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

作者: 黃鼎家    時間: 2017-1-25 10:30

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

作者: 文柏涵    時間: 2017-1-25 10:41

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2