返回列表 發帖

if...else 判斷式

本帖最後由 tonyh 於 2016-5-20 12:21 編輯

  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.     system("pause");
  14.     return 0;   
  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.     }else
  13.     {
  14.     cout<<"不及格"<<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.     {
  11.        cout<<"恭喜你及格了喔!"<<endl;            
  12.     } else
  13.     {
  14.        cout<<"太糟糕了竟然不及格!"<<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.     {
  11.      cout<<"及格了!請大家吃飯"<<endl;           
  12.     }else
  13.     {
  14.      cout<<"不及格!請大家吃飯"<<endl;   
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

本帖最後由 蔡孟君 於 2016-5-20 12:30 編輯
  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.      {
  14.              cout<<"什....麼?????不及格?我生氣囉!"<<endl;
  15.      }         
  16.      system("pause");
  17.      return 0;
  18. }     
複製代碼

TOP

本帖最後由 劉瑑恩 於 2016-5-20 12:29 編輯
  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.    {
  14.           cout<<"不及格!斬!"<<endl;
  15.    }                                            
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

本帖最後由 林禹彤 於 2016-5-20 12:30 編輯
  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>=70)
  10.          cout<<"啊不就好棒棒~~"<<endl;
  11.     else
  12.          cout<<"考這樣還敢回家???"<<endl;
  13.    
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

本帖最後由 洪為濬 於 2016-5-20 12:30 編輯
  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<=30)
  10.    {
  11.            cout<<"年輕人"<<endl;           
  12.    }else
  13.    {
  14.            cout<<"老叩叩"<<endl;
  15.    }
  16.    system("pause");
  17.    return 0;                                         
  18. }
複製代碼

TOP

本帖最後由 謝旻錡 於 2016-5-20 12:29 編輯
  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<<"is ok."<<endl;
  11.       else
  12.          cout<<"go die,stupid."<<endl;   
  13.       system("pause");
  14.       return 0;
  15. }
複製代碼

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

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

TOP

本帖最後由 劉純妘 於 2016-5-20 12:29 編輯
  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.           cout<<"太強拉你是神等級的喔"<<endl;
  11.      else
  12.           cout<<"用心點加油啦"<<endl;
  13.      system("pause");
  14.      return 0;
  15. }
複製代碼

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.     {
  11.          cout<<"恭喜你!及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格!斬!"<<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.     float x;
  7.     cout<<"請輸入你的成績:";
  8.     cin>>x;
  9.     if(x>=60)
  10.     {
  11.          cout<<"恭喜你!及格了!"<<endl;
  12.     }else
  13.     {
  14.     cout<<"不及格,斬!"<<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 A;
  7.    cout<<"請輸入你的成績:" ;
  8.    cin>>A;
  9.    if(A>=60)
  10.    {
  11.        cout<<"及格了!"<<endl;
  12.    }else
  13.    {
  14.       cout<<"不及格 !笑你"<<endl;
  15.    }  
  16.    system("pause");
  17.    return 0 ;  
  18. }   
複製代碼

TOP

返回列表