返回列表 發帖

if...else 敘述

本帖最後由 tonyh 於 2011-9-17 17:17 編輯

試做一個判斷成績及格沒之小程式
  1. #include <iostream>    //呼叫函數庫
  2. using namespace std;  
  3. int main()
  4. {
  5.     int score;      //宣告一個名為score的整數變數
  6.     cout<<"請輸入你的分數: ";
  7.     cin>>score;
  8.     if(score>=60)   //如果成績高於或等於60分
  9.     {
  10.         cout<<"恭喜你!及格了!";
  11.     }
  12.     else            //否則
  13.     {
  14.         cout<<"哎呀!不及格!請再努力!";   
  15.     }
  16.     cout<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你(妳)的分數";
  7.     cin>>score;
  8.     if(score>=60)
  9.     {
  10.     cout<<"恭喜你及格了";
  11.     }
  12.     else
  13.     {
  14.     cout<<"你(妳)回家讀你的書吧!";
  15.     }
  16.     cout<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你的分數:";
  7.     cin>>score;
  8.     if(score>=60)
  9.     {
  10.         cout<<"恭喜你及格了"  ;        
  11.     }
  12.     else
  13.     {
  14.         cout<<"哎呀 不及格請再努力!"  ;
  15.     }
  16.     cout<<endl;
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你的分數:";
  7.     cin>>score;
  8.     if(score>=10000000000000)
  9.     {
  10.       cout<<"恭喜你!及格了!";
  11.     }
  12.     else
  13.     {
  14.         cout<<"錯了!你沒讀書!再努力!";
  15.     }
  16.     cout<<endl;
  17.   
  18.    
  19.    
  20. system("pause");
  21.   return 0;   
  22. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()

  4. {
  5.   int score;
  6.   cout<<"請輸入您的分數";
  7.   cin>>score;
  8.   if(score>=60)
  9.   {
  10.      cout<<"恭喜及格";
  11.   }
  12.   else
  13.   {
  14.       cout<<"真可惜沒及格";
  15.   }  
  16.    cout<<endl;
  17.    
  18.    system("pause");
  19.    return 0;   
  20. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你的分數:";
  7.     cin>>score;
  8.     if(score>=60)
  9.     {
  10.       cout<<"恭喜你!及格了!";
  11.     }
  12.     else
  13.     {
  14.         cout<<"錯了!你沒讀書!再努力!";
  15.     }
  16.     cout<<endl;
  17.   
  18.    
  19.    
  20. system("pause");
  21.   return 0;   
  22. }
複製代碼

TOP

  1. #include <iostream>

  2. using namespace std;

  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你的分數:";
  7.     cin>>score;
  8.     if(score>=60)
  9.     {
  10.     cout<<"恭喜你!及格了!";
  11.     }
  12.     else
  13.     {
  14.     cout<<"哎呀!不及格!請再努力";
  15.     }     
  16.    system("pause");

  17.    return 0;

  18. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int age;
  6.     cout<<"請問你幾年級?" ;
  7.     cin>>age;
  8.     if(age>=1 && age<3)
  9.     {
  10.        cout<<"你是低年級" ;
  11.     }else if(age>=3 && age<5)
  12.     {
  13.         cout<<"你是中年級" ;
  14.     }else if(age>=5 && age<6)
  15.     {
  16.         cout<<"你是高年級";
  17.     }else
  18.     {
  19.          cout<<"你輸入錯誤";
  20.     }
  21.    
  22.     cout<<endl ;
  23.    
  24.    
  25. system("pause");
  26. return 0;   
  27.    
  28. }
複製代碼

TOP

返回列表