返回列表 發帖

if...else 判斷式

  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

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

TOP

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

TOP

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

TOP

[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]

TOP

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

TOP

返回列表