返回列表 發帖

if...else 判斷式

本帖最後由 蔡昀儒 於 2019-8-23 16:01 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int score;
  7.    cout<<"報上你的成績: ";
  8.    cin>>score;
  9.    if(score>=60)
  10.    {
  11.         cout<<"恭喜你! 及格了!"<<endl;
  12.    }else
  13.    {
  14.         cout<<"不及格~ 斬!"<<endl;
  15.    }
  16.    system("pause");   
  17.    return 0;
  18. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a=52;
  7. if(a>60)
  8. {
  9. cout<<"恭喜你 好棒棒";}
  10. else
  11. {
  12. cout<<("你爛死ㄌ 嫩");}      
  13. system("pause");
  14. return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a=45;
  7. if (a>=60)
  8. {cout<<"恭喜及格";}   
  9. else{cout<<"不及格";}   
  10.    
  11.    
  12.    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int score;
  7.    "報上你的成績: ";
  8.    score;
  9.    if(score>=60)
  10.    {
  11.         cout<<"恭喜你!!"<<endl;
  12.    }else
  13.    {
  14.         cout<<"不及格"<<endl;
  15.    }
  16.    system("pause");   
  17.    return 0;
  18. }
複製代碼

TOP

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

  4. int main()
  5. {
  6.     int a=71
  7.     if(a>60)
  8.    {
  9.     cout<<"及格";}
  10.     else
  11.     {
  12.     cout<<"母湯";}
  13.    
  14.       system("pause");
  15.       return 0 ;
  16.       }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int A=45 ;
  7. if (a>=60)
  8. {
  9. cout<<"恭喜及格">>
  10.   else
  11. {
  12.      cout<<"不及格">>   
  13. system("pause");
  14. return 0 ;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a=45;
  7. if (a>=60)
  8. {cout<<"恭喜及格";}   
  9. else{cout<<"不及格";}   
  10.    
  11.    
  12.    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int a=52;
  7. if(a>60)
  8. {
  9. cout<<"恭喜你 好棒棒";}
  10. else
  11. {
  12. cout<<("恭喜你考零分");}      
  13. system("pause");
  14. return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a=82;
  7.   if(a>=57)
  8. {
  9. cout<<"及格了好棒棒";}
  10. else
  11. {cout<<"你竟然輸我,哈哈";}
  12.   
  13.   
  14.   system("pause");
  15.   return 0;
  16. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=85;
  7.     if (a>60)
  8.     {
  9.       cout<<"恭喜";}
  10.       else
  11.       {
  12.           cout<<"不及格";}
  13.     system("pause");
  14.     return 0;}   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   
  7.   int a=87;
  8.   if(a>=60)
  9.   {cout<<"恭喜及格";}
  10. else
  11. {cout<<"恭喜不及格";} 
  12.   system("pause");
  13.   return 0;
  14. }
複製代碼

TOP

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

  4. int main()

  5. {
  6. int a=10;
  7. if (a<60)
  8. {
  9. cout<<"太勵害了";}
  10. else
  11. {cout<<"太爛了";}
  12.     system("pause");
  13.     return 0;   
複製代碼

TOP

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

  4. int main()
  5. {
  6.   int a=200;               
  7.   if (a>61)               
  8. {
  9. cout<<"及格";}           
  10.       else
  11.       {
  12.       cout<<" 不及格";}           
  13. system("pause");                 
  14. return 0;               
  15. }      
複製代碼

TOP

返回列表