返回列表 發帖

if...else 判斷式

本帖最後由 tonyh 於 2013-3-9 15:28 編輯

判斷成績及格沒.
  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>=60)
  10.      {
  11.      cout<<"恭喜妳!及格了!"<<endl;
  12.      }else
  13.      
  14.      cout<<"不及格!在努力!"<<endl;
  15.      system("pause");
  16.      return 0;   
  17.      }
複製代碼

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.     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.     if(score>=70)



  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.     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<<"恭喜你 給我100元!"<<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.    
  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<<"恭喜你!及格了!"<<endl;
  11.     }else      
  12.     {cout<<"不及格!留級!"<<endl;
  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 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. //if
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.   int score;
  8.   cout<<"請輸入你的成績:";
  9.   cin>>score;
  10.   if(score>=60)
  11.   {
  12.       cout<<"恭喜你及格了"<<endl;
  13.   }else
  14.   {
  15.      cout<<"你不及格!"<<endl ;
  16.               
  17.   }
  18.   
  19.   system("pause");   
  20.   return 0;
  21. }
複製代碼

TOP

返回列表