返回列表 發帖

if...else判斷式

  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.     {
  12.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  13.     }else
  14.     {
  15.         cout<<"不及格!打屁股!"<<endl;
  16.     }
  17.     goto re;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

  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>=100)
  11.     {
  12.         cout<<"好棒棒!!"<<endl;
  13.     }else
  14.     {
  15.         cout<<"你是垃圾!!"<<endl;
  16.     }
  17.     goto re;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

TOP

本帖最後由 張健勳 於 2015-10-3 11:40 編輯
  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>=100)
  11.     {
  12.         cout<<"恭喜你及格了,好棒棒!"<<endl;
  13.     }else
  14.     {
  15.         cout<<"不及格!你爛到爆了 去吃垃圾吧!"<<endl;
  16.     }
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼
[fly]我叫做黑夜影武者 我會飛唷[/fly]

TOP

  1. #include<iostream>w
  2. #include<csydlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入你的成績:";
  8.     cin>>score;
  9.     if(score>=100)
  10.     {
  11.        cout<<"好棒棒!"<<endl;
  12.     }else
  13.     {
  14.        cout<<"吃垃圾XD!"<<endl;
  15.     }            
  16.     system("pause");
  17.     return 0;               
  18. }
複製代碼

TOP

本帖最後由 蔡庭豪 於 2015-10-17 11:08 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int x;
  7.         cout<<"輸入您成績:"<<endl;
  8.         cin>>x;
  9.         if(x>=80&&x<=100)
  10.         {
  11.             cout<<"好成績,甲等"<<endl;
  12.     }
  13.         else if(x>=60&&x<=79)
  14.     {
  15.             cout<<"普通成績,乙等"<<endl;
  16.     }
  17.     else if(x>=0&&x<=59)
  18.     {
  19.             cout<<"不及格成績,丙等,吃屎吧"<<endl;
  20.     }
  21.     else if(x>100&&x<0)
  22.     {
  23.             cout<<"你撒謊"<<endl;
  24.     }
  25.     system("pause");
  26.     return 0;   
  27. }
複製代碼

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==100)
  10.     {
  11.         cout<<"阿不就好棒棒"<<endl;
  12.     }else if(score>=60)
  13.     {
  14.         cout<<"垃圾一個"<<endl;  
  15.     }else
  16.     {
  17.         cout<<"白癡!"<<endl;
  18.     }
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdilb>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入你的身高(cm):"<<x<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入你的體重(kg):"<<y<<endl;
  10.     cin>>y;
  11.     cout<<"您的bmi值:"<<x/[(y/100)*2]<<
  12. }   
複製代碼

TOP

返回列表