Board logo

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

作者: 陳品肇    時間: 2018-10-19 23:50     標題: 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>=60)
  10.    {
  11.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  12.    }
  13.    else
  14.    {
  15.          cout<<"不及格!打屁股!"<<endl;
  16.    }   
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼

作者: 洪寬瀧    時間: 2018-10-20 14:11

  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.     }
  14.       else
  15.       {
  16.            cout<<"不及格"<<endl;
  17.            }
  18.            system("pause");
  19.            return 0;
  20.            }
複製代碼

作者: 葉千郁    時間: 2018-10-20 14:14

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

作者: 曲書辰    時間: 2018-10-20 14:14

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

作者: 葉映琁    時間: 2018-10-20 14:15

  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.     }
  13.     else
  14.     {
  15.         cout<<"喔喔!不及格耶!";
  16.                
  17.     }
  18.     system ("pause");
  19.     return 0;
  20. }
複製代碼

作者: 周孫印    時間: 2018-10-20 14:15

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

作者: 王瑞喻    時間: 2018-10-20 14:16

  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.                     cout<<"不及格!加油!"<<endl;
  14.                     }

  15. system("pause");
  16. return 0;
  17. }
複製代碼

作者: 章幼莛    時間: 2018-10-20 14:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x;
  7.     cout<<"請輸入一個成績:";
  8.     cin>>x;
  9.     if(x>=60)
  10.     {
  11.         cout<<"pase"<<endl;
  12.         }else
  13.     {
  14.         cout<<"fail"<<endl;
  15.         }   
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 趙一鳴    時間: 2018-10-20 14:16

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

作者: 吳孟修    時間: 2018-10-20 14:17

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int x;
  7.   cout<<"請輸入你的成績:";
  8.   cin>>x;
  9.   if(x>=60)
  10.   {
  11.     cout<<"恭喜你!及格了!"<<endl;
  12.   }
  13.   else
  14.   {
  15.     cout<<"不及格,回去背熟!!"<<endl;
  16.   }
  17.   system("pause");   
  18.   return 0;
  19. }
複製代碼

作者: 吳孟書    時間: 2018-10-20 14: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.     }
  13.     else
  14.     {
  15.         cout<<"不及格!"<<endl;
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 葉千郁    時間: 2018-10-20 14:57

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





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