Board logo

標題: if...else if...else 判斷式 [打印本頁]

作者: tonyh    時間: 2014-8-30 11:55     標題: if...else 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==100)
  10.         cout<<"哇!滿分!"<<endl;
  11.     else if(score>=60 && score<100)
  12.         cout<<"恭喜你及格了!"<<endl;
  13.     else if(score>0 && score<60)
  14.         cout<<"不及格!請再努力!"<<endl;
  15.     else if(score==0)
  16.         cout<<"甚麼?鴨蛋?斬!"<<endl;
  17.     else
  18.         cout<<"輸入錯誤?斬!"<<endl;
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

作者: 李大全    時間: 2014-8-30 12:00

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int score;
    cout<<"請輸入你的分數: ";
    cin>>score;
    if(score==100)
        cout<<"哇!滿分!"<<endl;
    else if(score>=60 && score<100)
        cout<<"恭喜你及格了!"<<endl;
    else if(score>0 && score<60)
        cout<<"不及格!請再努力!"<<endl;
    else if(score==0)
        cout<<"甚麼?鴨蛋?斬!"<<endl;
    else
        cout<<"輸入錯誤?斬!"<<endl;
    system("pause");
    return 0;
}
作者: 梁和雋    時間: 2014-8-30 12:01

  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.         cout<<"滿分"<<endl;
  11.     else if(score>=60 && score<100)
  12.         cout<<"及格"<<endl;
  13.     else if(score>0 && score<60)
  14.         cout<<"不及格"<<endl;
  15.     else if(score==0)
  16.         cout<<"鴨蛋"<<endl;
  17.     else
  18.         cout<<"輸入錯誤"<<endl;
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

作者: 謝瀞儀    時間: 2014-8-30 12:03

本帖最後由 謝瀞儀 於 2014-8-30 12:05 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s;
  7.     cout<<"輸入分數:"<<endl;
  8.     cin>>s;
  9.     if (s==100)
  10.         cout<<"哇!滿分!"<<endl;
  11.     else if (s>=70 && s<80)
  12.         cout<<"甘巴爹!加油!"<<endl;
  13.     else if (s>=80 && s<90)
  14.         cout<<"甘巴爹!!快90了!"<<endl;
  15.     else if (s>=90 && s<100)
  16.         cout<<"甘巴爹!甘巴爹!到100更好!"<<endl;
  17.     else if (s>=60 && s<70)
  18.         cout<<"恭喜你及格了!"<<endl;
  19.     else if (s>0 && s<60)
  20.         cout<<"不及格!請再努力!"<<endl;
  21.     else if (s==0)
  22.         cout<<"!?給本宮拖出去斬了!"<<endl;
  23.     else
  24.         cout<<"輸入錯誤?給本宮拖出去斬了!"<<endl;
  25.     system ("pause");
  26.     return 0;
  27. }
複製代碼

作者: 洪振庭    時間: 2014-8-30 12:05

  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.        cout<<"滿分"<<endl;
  11.    else if(score>=60 && score<100)
  12.       cout<<"及格"<<endl;
  13.    else if(score>0 && score<60)
  14.        cout<<"不及格"<<endl;
  15.    else if(score==0)
  16.        cout<<"鴨蛋"<<endl;  
  17.    else
  18.        cout<<"錯誤"<<endl;
  19.    system("pause");
  20.    return 0;
  21. }
複製代碼

作者: 李知易    時間: 2014-8-31 12:22

  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.       cout<<"哇!滿分"<<endl;
  11.     else if(score>=60 && score<100)
  12.       cout<<"恭喜你及格了"<<endl;
  13.     else if(score>0 && score<60)
  14.       cout<<"不及格!加油!"<<endl;
  15.     else if(score==0)
  16.       cout<<"!@#$%^&*☆¢*去把數學抄100遍"<<endl;
  17.     else
  18.       cout<<"來人啊!拖出去斬了"<<endl;
  19.     system("pause");
  20.     return 0;   

  21. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2