返回列表 發帖

if...else 判斷式

  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 score;
  7.     cout<<"請輸入你的分數: ";
  8.     cin>>score;
  9.     if(score>=100)
  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.     }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.     system("pause");

  17.         return 0;        

  18. }
複製代碼

TOP

回復 1# tonyh
  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.      }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.     system("pause");
  17.         return 0;        
複製代碼

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<<"恭喜你及格了!";
  12.          }else
  13.          {
  14.          cout<<"不及格打屁股!";
  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.     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.     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.     system("pause");

  17.         return 0;        

  18. }
複製代碼

TOP

  1. {

  2.     int score;

  3.     cout<<"請輸入你的分數: ";

  4.     cin>>score;

  5.     if(score>=60)

  6.     {

  7.         cout<<"恭喜你及格了!"<<endl;

  8.     }else

  9.     {

  10.         cout<<"不及格打屁股!"<<endl;

  11.     }

  12.     system("pause");

  13.         return 0;        

  14. }
複製代碼

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.    } 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.     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.     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.     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

返回列表