Board logo

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

作者: tonyh    時間: 2017-9-20 17:40     標題: if...else 判斷式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int score; //變數名稱與要做的事有一定程度的相關
  7.     re:
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  12.     else
  13.         cout<<"不及格!打屁股!"<<endl;
  14.     goto re;
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

作者: 蒙鎧柔    時間: 2017-9-20 18:21

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"Score: ";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.         cout<<"PASS"<<endl;
  12.     }else
  13.     {
  14.         cout<<"FAIL"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 李沛昂    時間: 2017-9-20 18:26

  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-9-20 18:26

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





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