返回列表 發帖

if...else 判斷式

本帖最後由 tonyh 於 2016-3-19 10:50 編輯
  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"成績"<<endl
  8.     cin>>score;
  9.     if(score>=60)
  10.     cout<<"好棒棒"<<endl
  11.     else  
  12.     cout<<"屎吧你"<<endl
  13.     syatam()
  14.     return 0;
  15.    
  16.    
  17.    
  18.    
  19.    
  20.    
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     f:
  7.     int x;   
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>x;
  10.     if(x>=60)
  11.         cout<<"恭喜,通過考試了!!!!!!!!!!!!"<<endl;
  12.     else
  13.         cout<<"去吃大便!!!"<<endl;
  14.     goto f;
  15.     system("pause");      
  16.     return 0;     
  17. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     a:
  7.     int x;
  8.      
  9.     cout<<"請輸入你的成績:";
  10.     cin>>x;
  11.     if(x>=60)
  12.     cout<<"恭喜你及格了!給你糖吃!"<<endl;
  13.     else
  14.     cout<<"不及格!打屁股!"<<endl;
  15.    
  16.     goto a;
  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 scr;
  7.    
  8.     cout<<"PLEASE ENTER THE TEST SCORE: ";
  9.     cin>>scr;
  10.    
  11.     if(scr>=75)
  12.     cout<<"HOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOORRRRRRRRRAAAAAAYYYYYYYYYYYYYYYYYY!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"<<endl;
  13.     else
  14.     cout<<"NNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO,WHYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY???????????????????????????????"<<endl;
  15.    
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

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

TOP

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

TOP

返回列表