Board logo

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

作者: 許婷芳    時間: 2019-8-9 17:23     標題: if...else 判斷式

[attach]6942[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int score; //變數名稱與要做的事有一定程度的相關
  7.     .....
  8.     cout<<".....";
  9.     cin>>score;
  10.     if(.......)
  11.         cout<<"....."<<endl;
  12.     else
  13.         cout<<"....."<<endl;
  14.     .......
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 謝以愛    時間: 2019-8-9 19:48

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     re:
  7.     int score;
  8.     cout<<"請輸入你的成績:"<<endl;
  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. }
複製代碼

作者: 謝以恩    時間: 2019-8-9 19:52

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

  5. {
  6.     int score;
  7.     re:
  8.     cout<<"輸入你的成績"<<endl;
  9.     cin>>score;
  10.     if(score>=60)   
  11.     {
  12.     cout<<"恭喜你及格了,給你糖吃!"<<endl;
  13.     }
  14.     else
  15.     cout<<"不及格,打屁股!"<<endl;
  16.     goto re;
  17.     system("pause");
  18.     return 0;   
  19.      
  20.     }
複製代碼

作者: 廖文綺    時間: 2019-8-9 20:04

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

作者: 林祐霆    時間: 2019-8-9 20:04

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入你的成績(絕對不可以說謊喔)"<<endl;
  8.     cin>>a;  
  9.     if(a<=59&&a>0)
  10.     cout<<"再加油,不打你!"<<endl;
  11.     if(a<=84&&a>=60)
  12.     cout<<"你真棒!"<<endl;
  13.     if(a<100&&a>=85)   
  14.     cout<<"我覺得你在說謊,禁足你3天!"<<endl;
  15.     if(a>100||a<0)  
  16.     cout<<"謊報成績!永遠禁足!"<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 洪承廷    時間: 2019-8-9 20:08

[code]
#include<iostream>
#include<cstdlib>
using namespace std;

int main()
{
   int score;
   re:
   cout<<"請輸入你的成績:";
   cin>>score;
                           
    if(score>=60)
                 cout<<"恭喜你及格了,給你糖吃!"<<endl;
       else         
         cout<<"不及格!打屁股!" <<endl;
         goto re;            
   system("pause");

    return 0;

}
[code]
作者: 蘇詠翔    時間: 2019-8-9 20:29

  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.   
  15. goto re;   
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼





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