返回列表 發帖

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

本帖最後由 蔡昀儒 於 2019-8-23 16:02 編輯
  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. int a, b;
  2.     cout<<"請輸入a: ";
  3.     cin>>a;
  4.     cout<<"請輸入b: ";
  5.     cin>>b;
  6.     if(a>b)
  7.     {
  8.         cout<<"a>b"<<endl;
  9.     }else if(a<b)
  10.     {
  11.         cout<<"a<b"<<endl;  
  12.     }else
  13.     {
  14.         cout<<"a=b"<<endl;
  15.     }
複製代碼

TOP

  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. }
複製代碼

TOP

  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.    
複製代碼

TOP

  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. }
複製代碼

TOP

  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.   {cout<<"a較高";}
  13.   else if(b>a)
  14.   {cout<<"b較高" ;}
  15.   else
  16.   {cout<<"ab一樣";}
  17.    
  18. system("pause");
  19.   return 0;
  20. }
  21. int   x, y;
  22.   
複製代碼

TOP

  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. }
複製代碼

TOP

  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.     {cout<<"a的成績比較高";}
  14.     else if (b>a)
  15.     {cout<<"b的成績比較高";}
  16.     else
  17.     {cout<<"ab成績一樣高";}
  18.      
  19.     system("pause");
  20.     return 0;}   
複製代碼

TOP

  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==100)
  12. {cout<<"滿分";
  13. }
  14. else if (b=60)
  15. {cout<<"及格";}
  16. else{cout<<"不及格";}               
  17. system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  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. {cout<<"a比b大";}
  13. else if (a<b)
  14. {cout<<"a比b大";}
  15. else
  16. {cout<<"一樣大";}
  17. system("pause");
  18. return 0;
  19. }
複製代碼

TOP

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

TOP

  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. {cout<<"a你害我心碎了";}
  13. else if (b>a)
  14. {cout<<"b你真是.....超強的";}
  15. else
  16. {cout<<"ab你們都一樣";}
  17.   
  18.   system("pause");
  19.   return 0;
  20. }   
複製代碼

TOP

  1. [code]#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的成績比較高">>
  14. elsa if (b>a)
  15. cout<<"b的成績比較高">>
  16.   else
  17. {
  18. system("pause");
  19. return 0 ;
  20. }
複製代碼
[/code]

TOP

返回列表