返回列表 發帖

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

本帖最後由 tonyh 於 2013-3-16 14:46 編輯
  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==100)
  10.       {
  11.            cout<<"哇! 滿分!"<<endl;
  12.       }
  13.       else if(score>=60 && score<100)    // && 是 and 的意思
  14.       {
  15.            cout<<"恭喜你! 及格了!"<<endl;
  16.       }
  17.       else if(score>0 && score<60)
  18.       {
  19.            cout<<"不及格! 打屁股!"<<endl;
  20.       }
  21.       else if(score==0)
  22.       {
  23.            cout<<"鴉蛋? 斬!"<<endl;
  24.       }
  25.       else    //其餘所有情況
  26.       {
  27.            cout<<"輸入錯誤!"<<endl;
  28.       }
  29.       system("pause");
  30.       return 0;      
  31. }
複製代碼

  1. #include<iostream>
  2. #include<cstdilb>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;  
  7.     cout<<"請輸入你的分數"<<endl;
  8.     cin>>score;
  9.     if(score=100)
  10.     {
  11.         cout<<"不錯"<<endl;            
  12.     }
  13.     else if(score>=60 && score<100)
  14.     {
  15.         cout<<"腦袋有洞"<<endl;     
  16.     }
  17.     else if(score<60)
  18.     {
  19.         cout<<"笨笨笨!"<<endl;
  20.     }
  21.     else
  22.     {
  23.         cout<<"別亂完!"<<endl;         
  24.     }
  25.     system("pause");
  26.     return 0;
  27.         
  28. }
複製代碼

TOP

  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==100)
  10. {
  11. cout<<"恭喜你得到滿分!"<<endl;
  12. }
  13. else if(score>=60 && score<100)
  14. {
  15. cout<<"恭喜你及格了!"<<endl;
  16. }              
  17.    else if(score>0 && score<60)
  18. {
  19. cout<<"不及格!"<<endl;
  20. }                 
  21.    else if(score==0)
  22. {
  23. cout<<"斬!"<<endl;
  24. }                 
  25. else
  26. {
  27. cout<<"輸入錯誤!"<<endl;
  28. }                          
  29. system("pause");
  30. return 0;
  31. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;   
  7.     cout<<"請輸入你的分數:";
  8.     cin>>x;
  9.     if(x==100)
  10.     {
  11.     cout<<"哇滿分耶!"<<endl;
  12.     }
  13.     else if(x<100 && x>=60)
  14.     {
  15.     cout<<"你及格了"<<endl;
  16.     }
  17.     else if(x>0 && x<60)
  18.     {
  19.     cout<<"不及格砍頭"<<endl;
  20.     }
  21.     else if(x==0)
  22.     {
  23.     cout<<"回家把你打到死"<<endl;
  24.     }
  25.     else
  26.     {
  27.     cout<<"輸入錯誤"<<endl;
  28.     }
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

TOP

  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==100)
  10.     {
  11.     cout<<"哇!滿分!"<<endl;
  12.     }
  13.     else if(score>=60 && score<100)
  14.     {
  15.     cout<<"恭喜你及格了!"<<endl;
  16.     }
  17.     else if(score>0 && score<60)
  18.     {
  19.     cout<<"不及格打屁股!"<<endl;
  20.     }
  21.     else if(score==0)
  22.     {
  23.     cout<<"斬了!"<<endl;
  24.     }
  25.     else   

  26.     {
  27.     cout<<"輸入錯誤!"<<endl;
  28.     }
  29.     system("pause");   
  30.     return 0;           
  31. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"your score?";
  8.     cin>>score;
  9.     if(score==100)
  10.     {
  11.     cout<<"滿分!"<<endl;
  12.     }
  13.     else if(score>=60 && score<100)
  14.     {
  15.          cout<<"及格!"<<endl;
  16.     }
  17.     else if(score<60 && score>1)
  18.     {     
  19.      cout<<"不及格!"<<endl;   
  20.     }
  21.     else
  22.     {
  23.     cout<<"Error"<<endl;   
  24.     }

  25.     system("pause");
  26.     return 0;      
  27. }
複製代碼

TOP

  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==100)
  10.     {
  11.         cout<<"哇!滿分!太神了!"<<endl;
  12.     }else if(score>=60 && score<100)   //&& and的意思
  13.     {
  14.         cout<<"恭喜你及格了!"<<endl;  
  15.     }else if(score>0 && score<60)
  16.     {
  17.         cout<<"不及格打屁股!"<<endl;
  18.     }else if(score==0)
  19.     {
  20.         cout<<"不及格在加油..."<<endl;
  21.     }
  22.     else
  23.     {
  24.         cout<<"輸入錯誤!"<<endl;
  25.     }
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

  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==100)
  10.     {
  11.       cout<<"滿分!!讚!!"<<endl;           
  12.     }
  13.     else if(score>=60 && score<100)
  14.     {
  15.     cout<<"及格!"<<endl;
  16.     }
  17.      else if(score>0 && score<60)
  18.      {
  19.         cout<<"不及格!"<<endl;  
  20.      }     
  21.     else if(score==0)
  22.     {
  23.        cout<<"小命不保!!"<<endl;   
  24.      }     
  25.      else
  26.      {
  27.            cout<<"輸入錯誤!"<<endl;
  28.      }
  29.     system ("pause");
  30.     return 0;

  31. }
複製代碼

TOP

  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==100)
  10.     {
  11.          cout<<"哇! 滿分! 屌爆了!"<<endl;         
  12.     }
  13.     else if(score>=60 && score<100)
  14.     {
  15.          cout<<"恭喜你及格了!可以死了!"<<endl;
  16.     }
  17.     else if(score>0 && score<60)
  18.     {
  19.          cout<<"不及格!跳樓吧!"<<endl;
  20.     }
  21.     else if(score==0)
  22.     {
  23.          cout<<"斬!賽到的!"<<endl;
  24.     }
  25.     else
  26.     {
  27.          cout<<"輸入錯誤!"<<endl;
  28.     }
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

TOP

  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==100)
  10.     {
  11.       cout<<"滿分!賽到的!"<<endl;
  12.     }
  13.     else if(score>=60&&score<100)
  14.     {
  15.       cout<<"及格!稀奇!"<<endl;
  16.      }
  17.     else if(score>0&&score<60)
  18.     {
  19.       cout<<"不及格!去死啊!";
  20.     }
  21.     else if(score==0)
  22.     {
  23.       cout<<"斬";
  24.     }
  25.     else
  26.     {
  27.       cout<<"輸入錯物誤!"<<endl;
  28.     }
  29.       system("pause");
  30.       return 0;         
  31.    
  32.     }
複製代碼

TOP

  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==100)
  10.   {
  11.   cout<<"恭喜你!滿分"<<endl;      
  12.   }
  13.   else if(score>=60&&score<100)
  14.   {
  15.        cout<<"真普通"<<endl;  
  16.   }
  17.     else if(score<60)
  18.   {
  19.     cout<<"斬了"<<endl;      
  20.   }
  21.   
  22.   system("pause");
  23.   return 0;
  24. }
複製代碼

TOP

  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==100)
  10.     {
  11.     cout<<"哇!滿分!"<<endl;
  12.     }
  13.     else if(score>=60 && score<100)
  14.     {
  15.     cout<<"恭喜你及格了!"<<endl;
  16.     }
  17.     else if(score>0 && score<60)
  18.     {
  19.     cout<<"不及格打屁股!"<<endl;
  20.     }
  21.     else if(score==0)
  22.     {
  23.     cout<<"斬了!"<<endl;
  24.     }
  25.     else   
  26.     {
  27.     cout<<"輸入錯誤!"<<endl;
  28.     }
  29.     system("pause");   
  30.     return 0;           
  31. }
複製代碼

TOP

  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==100)
  10.       {
  11.            cout<<"哇! 滿分!"<<endl;
  12.       }
  13.       else if(score>=60 && score<100)     
  14.       {
  15.            cout<<"恭喜你! 及格了!"<<endl;
  16.       }
  17.       else if(score>0 && score<60)
  18.       {
  19.            cout<<"不及格! 打屁股!"<<endl;
  20.       }
  21.       else if(score==0)
  22.       {
  23.            cout<<"鴉蛋? 移送法辦!"<<endl;
  24.       }
  25.       else   
  26.       {
  27.            cout<<"輸入錯誤!"<<endl;
  28.       }
  29.       system("pause");

  30.       return 0;      

  31. }
複製代碼

TOP

返回列表