返回列表 發帖

if...else if...else 敘述 (二)

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你的成積: ";
  7.     cin>>score;
  8.     if(score==100)
  9.     {
  10.          cout<<"哇!滿分!你太神了!"<<endl;
  11.     }
  12.     else if(score>=60 && score<100)
  13.     {
  14.          cout<<"恭喜你及格了!"<<endl;
  15.     }
  16.     else if(score>=0 && score<60)
  17.     {
  18.          cout<<"不及格!打屁股!"<<endl;
  19.     }
  20.     else if(score==0)
  21.     {
  22.          cout<<"你.....  (氣到說不出話來)"<<endl;
  23.     }
  24.     else    //所有其他的狀況
  25.     {
  26.          cout<<"別來亂!"<<endl;
  27.     }
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;
  6.     cout<<"請輸入你的成積: ";
  7.     cin>>score;
  8.     if(score==100)
  9.     {
  10.          cout<<"滿分!"<<endl;
  11.     }
  12.     else if(score>=60 && score<100)
  13.     {
  14.          cout<<"及格了!"<<endl;
  15.     }
  16.     else if(score>=0 && score<60)
  17.     {
  18.          cout<<"不及格!"<<endl;
  19.     }
  20.     else if(score==0)
  21.     {
  22.          cout<<"太扯了八!"<<endl;
  23.     }
  24.     else    //所有其他的狀況
  25.     {
  26.          cout<<"走開!!"<<endl;
  27.     }
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int x;
  6.   cout<<"請輸入你的分數:"<<endl;
  7.   cin>>x;

  8.   if(x==100)
  9.   {
  10.      cout<<"神人!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"<<endl;     
  11.    }
  12.   else if(x>=60 && x<100)
  13.   {
  14.     cout<<"還不錯!目標100"<<endl;   
  15.   }
  16.   else if(x<60 && x>=0)
  17.   {
  18.     cout<<"來人阿!拖出去斬了"<<endl;  
  19.   }
  20.    else
  21.    {
  22.      cout<<"保全!來抓人"<<endl;  
  23.    }
  24.    
  25.    
  26.   
  27.   system("pause");
  28.   return 0;   
  29.    
  30. }
複製代碼

TOP

  1. {
  2.     int score;
  3.     cout<<"請輸入你的成積: ";
  4.     cin>>score;
  5.     if(score==100)
  6.     {
  7.          cout<<"你一定很用功!!(拍拍手)"<<endl;
  8.     }
  9.     else if(score>=60 && score<100)
  10.     {
  11.          cout<<"不錯不錯!!!"<<endl;
  12.     }
  13.     else if(score>=0 && score<60)
  14.     {
  15.          cout<<"書都沒在讀ㄚ"<<endl;
  16.     }
  17.     else if(score==0)
  18.     {
  19.          cout<<"你..你..算了吧!"<<endl;
  20.     }
  21.     else    //所有其他的狀況
  22.     {
  23.          cout<<"回去睡覺啦!"<<endl;
  24.     }
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.       cout<<"☆☆☆☆☆☆☆☆☆" <<endl;
  6.       float x;
  7.       cout<<"☆請輸入你的成績:";
  8.       cin>>x;
  9.       cout<<"☆你輸入的分數為"<<x<<endl;
  10.       if(x==100)
  11.       {
  12.              cout<<"☆恭喜你考滿分!"<<endl;
  13.       }
  14.       else if( x >=80 && x<100)
  15.       {
  16.              cout<<"☆加油再努力一點滿分就是你的了!"<<endl;
  17.       }
  18.       else if(x<=60 && x>=0)
  19.       {
  20.              cout<<"☆加油........!"<<endl;
  21.       }
  22.       else
  23.       {
  24.              cout<<"☆去死!"<<endl;
  25.       }
  26.       cout<<"☆☆☆☆☆☆☆☆☆"<<endl ;
  27.       
  28.       system("pause");
  29.       return 0;
  30.       
  31. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int r;
  6.     cout<<"請輸入你的成績: "<<endl;
  7.     cin>>r;
  8.     if(r==100)
  9.     {
  10.         cout<<"你好厲害喔!考了滿分!"<<endl;
  11.     }
  12.     else if(r>=60 && r<100)
  13.     {
  14.         cout<<"恭喜你!你及格了!"<<endl;        
  15.     }
  16.     else if(r>=0 && r<60)
  17.     {
  18.         cout<<"你該打了!考那麼差!"<<endl;
  19.     }
  20.     else if(r==0)
  21.     {
  22.         cout<<"你好笨阿!"<<endl;
  23.     }
  24.     else
  25.     {
  26.         cout<<"來亂的"<<endl;  
  27.     }
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int score;

  6.     cout<<"請輸入你的成積: ";

  7.     cin>>score;

  8.     if(score==100)

  9.     {

  10.          cout<<"你太神了!!!!!!!!!"<<endl;

  11.     }

  12.     else if(score>=60 && score<100)

  13.     {

  14.          cout<<"不錯你可以閃人了"<<endl;

  15.     }

  16.     else if(score>=60 && score<0)

  17.     {

  18.          cout<<"恭喜你不及格"<<endl;

  19.     }

  20.     else if(score==0)

  21.     {

  22.          cout<<"來人阿!拖出去斬了"<<endl;

  23.     }

  24.     else     

  25.     {

  26.          cout<<"回家吧你"<<endl;

  27.     }


  28.    
  29.     system("pause");
  30.     return 0;
  31. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int score;
  6.   cout<<"請輸入你的分數:"<<endl;
  7.   cin>>score;
  8.   if(score==100)
  9.   {
  10.     cout<<"應該的"<<endl;
  11.   }
  12.   else if(score>60&&score<100)
  13.   {
  14.       cout<<"你可以去跳樓了"<<endl;
  15.   }
  16.   else if(score>0&&score<60)
  17.   {
  18.        cout<<"什麼!!"<<endl;
  19.   }
  20.   else   
  21.   {
  22.          cout<<"別來亂"<<endl;  
  23.   }
  24.    system("pause");
  25.    return 0;  
  26. }
複製代碼

TOP

返回列表