返回列表 發帖

if...else 判斷式

本帖最後由 tonyh 於 2017-1-24 11:35 編輯

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

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

TOP

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

  3. int main()
  4. {
  5.     int score;
  6.     cout<<"輸入你的成績";
  7.     cin>>score;
  8.     if(score>=60)
  9.     {
  10.         cout<<"及格囉!不錯喔!" ;  
  11.         cout<<endl;               
  12.     }
  13.     else
  14.     {
  15.         cout<<"不及格啊!!要加油!" ;
  16.         cout<<endl;  
  17.     }
  18.    
  19.     system("pause");
  20.     return 0;
複製代碼

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>=5487)
  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<<"恭喜及格!";
  12.        }else
  13.        {
  14.        cout<<"未及格!兄弟們,打他!";
  15. }
  16.     cout<<endl;            
  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<<"恭喜你!及格了!";
  12.   }else
  13.      {
  14.      cout<<"不及格... 斬!";
  15.      }
  16.      cout<<endl;
  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.     cout<<"報上你的成績:";
  8.     cin>>score;
  9.     if(score>=90)
  10.     {
  11.      cout<<"恭喜你!達成目標啦!";            
  12.      }else
  13.     {
  14.      cout<<"低於目標你死定了!";   
  15.      }
  16.     cout<<endl;  
  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>=180)
  10.     {  
  11.          cout<<"你愛因斯坦喔!那麼聰明幹嘛!";
  12.     }else
  13.     {
  14.          cout<<"哈哈笑你...低智商生物";              
  15.     }
  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.         cout<<"恭喜你! 及格了!";
  11.     else
  12.         cout<<"不及格... 斬!";
  13.     cout<<endl;
  14.     system("pause");
  15.     return 0;
複製代碼

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<<"恭喜你.0487?";         
  12.    } else
  13.    {
  14.    cout<<"不及格 拖出去吃屎";
  15.    }
  16.    cout<<endl;
  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<<"恭喜你!及格了!";
  12. }else
  13. {
  14.      cout<<"不及格...斬!";
  15.      cout<<endl;
  16. }
  17. }
複製代碼

TOP

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

  4. int main()
  5. {   
  6.    
  7.     int score;
  8.     cout<<"請說出年齡:";
  9.     cin>>score;
  10.    
  11.     if(score>=100)
  12.         cout<<"走得愉快"<<endl;
  13.     else
  14.         cout<<"祝你長壽"<<endl;  
  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.     cout<<"報上你的成績:";
  8.     cin>>score;  
  9.      if(score>=9999)
  10.      {
  11.          cout<<"恭喜你!達成目標啦!";      
  12.      }else
  13.      {
  14.          cout<<"不及格 拖出去吃屎!0487878787878787";     
  15.      }
  16.      cout<<endl;
  17.      system("pause");
  18.      return 0
  19. }
複製代碼

TOP

返回列表