Board logo

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

作者: 王瑞喻    時間: 2020-8-17 16:13     標題: if...else 判斷式

本帖最後由 王瑞喻 於 2020-8-18 09:17 編輯


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

作者: 蔡惟丞    時間: 2020-8-18 09:53

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

作者: 林妤凡    時間: 2020-8-18 10:02

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

作者: 鄞美旭    時間: 2020-8-18 10:02

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

作者: 吳英睿    時間: 2020-8-18 10:04

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

作者: 孫子傑    時間: 2020-8-18 10:04

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

作者: 梁仲維    時間: 2020-8-18 10:06

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

作者: 陳柏安    時間: 2020-8-18 10:07

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

作者: 于舜合    時間: 2020-8-18 10:08

  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>=999999)
  10.     {
  11.          cout<<"恭喜你! 及格了!"<<endl;
  12.     }else
  13.     {
  14.           cout<<"不及格斬!"<<endl;
  15.     }
  16. system("pause");
  17. return 0;
  18. }                                             
複製代碼





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