返回列表 發帖

if...else 判斷式

本帖最後由 tonyh 於 2017-7-5 11:23 編輯

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

本帖最後由 蒙鎧柔 於 2017-7-5 11:27 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.    int score;
  7.    
  8.    cout<<"your score:";
  9.    cin>>score;
  10.    if(score>=60)
  11.     {      
  12.             cout<<"pass"<<endl;
  13.             }else
  14.             {
  15.             cout<<"fail"<<endl;
  16. }
  17. system("pause");
  18. return 0;
  19. }
複製代碼

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>=60)
  10.      {   cout<<"恭喜你及格!";
  11.      
  12.      }else   
  13.      {   cout<<"不及格~~~請補考!!";
  14.               
  15.      }                     
  16.      system("pause");
  17.      return 0;
  18. }     
  19.      
複製代碼

TOP

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

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>=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 score;
  7.     cout<<"輸入成績:";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.     cout<<"及格"<<endl;
  12.     }
  13.     else
  14.     {
  15.     cout<<"!!"<<endl;
  16.     }
  17. system("pause");
  18. return 0;
  19. }
複製代碼

TOP

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

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>=60)
  10.     {
  11.     cout<<"恭喜你!及格";
  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 score;
  7.       cout<<"報上您的成績:";
  8.       cin>> score;
  9.       if(score>=60)
  10.       {
  11.       cout<<"恭喜您 您的分數及格!"<< endl;
  12.       } else
  13.       {
  14.       cout<<"喔~喔~您的分數不及格!"<< endl;     
  15.       }
  16.       
  17.       system("pause");
  18.       return 0;
  19. }
複製代碼

TOP

返回列表