返回列表 發帖

if...else if...else 敘述 - 評論成績的小程式

本帖最後由 tonyh 於 2011-11-9 13:31 編輯

試做一個小程式, 對使用者輸入的成績做評論.

#include<iostream>
using namespace std;
int main()
{
    int score;
    cout<<"請輸入你(妳)的分數";
    cin>>score;
    if(score==100)
    {
       cout<<"哇好厲害ㄡ!回去.........吧!";
    }else if(score>=60&&score<=99)
    {
       cout<<"恭喜你及格啦!....!";
    }else if(score>=1&&score<=59)      
    {
       cout<<"不及格回去讀書吧!吃.....吧!";   
    }else if(score==0)
    {
       cout<<"你也考得太差了吧!....吧!";
         
    }else
    {
       cout<<"輸入錯誤!可以把挖土機和卡車吃下去!";  
    }
    cout<<endl;
    system("pause");
    return 0;
}

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<<"你可以考雄中!";  
  11.   }else if(score>=60 and score>=99)
  12.   {
  13.   cout<<"恭喜恭喜!及格了!";
  14.   }else if(score>=1 and score>=59)
  15.   {
  16.   cout<<"不及格吃豬屎吧!";
  17.   }else if(score==0)
  18.   {
  19.   cout<<"你考這分數!我非宰了你不可!";
  20.   }else
  21.   {
  22.   cout<<"輸入錯誤!";                     
  23.   }
  24.   cout<<endl;
  25.   system("pause");
  26.   return 0;
  27. }
複製代碼

TOP

回復 1# tonyh

#include<iostream>
using namespace std;
int main()
{  
    int score;  
    cout<<"請輸入你的分數";
    cin>>score;
    if(score==100)
    {
        cout<<"你好棒!可以...........了!";  
    }else if(score>=60&& score<=99)
    {
        cout<<"及格了!吃屎吧!";                              
    }else if(score>=1&& score<=59)
    {
        cout<<"不及格!回去.......吧!";
    }else if(score==0)
    {
        cout<<"太差了!考什麼鳥蛋分!回家...............吧";                                      
    }else   
    {
    cout<<"輸入錯誤!";
    }
    cout<<endl;                                                                                                                        
    system("pause");
    return 0;                  
}

TOP

回復 3# 陳詩凱

#include<iostream>
using namespace std;
int main()
{  
    int score;  
    cout<<"請輸入你的分數";
    cin>>score;
    if(score==100)
    {
        cout<<"你好棒!可以......了!";  
    }else if(score>=60&& score<=99)
    {
        cout<<"及格了!吃..........吧!";                              
    }else if(score>=1&& score<=59)
    {
        cout<<"不及格!回去.................吧!";
    }else if(score==0)
    {
        cout<<"太差了!考什麼............分!回家.......................吧";                                      
    }else   
    {
    cout<<"輸入錯誤!";
    }
    cout<<endl;                                                                                                                        
    system("pause");
    return 0;                  
}

TOP

ㄏㄟ ㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟ ㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟ ㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟㄟ ㄟㄟㄟㄟㄟㄟ                                                                                    \

TOP

回復 3# 陳詩凱

#include<iostream>
using namespace std;
int main()
{  
    int score;  
    cout<<"請輸入你的分數";
    cin>>score;
    if(score==100)
    {
        cout<<"你好棒!可以.............了!";  
    }else if(score>=60&& score<=99)
    {
        cout<<"及格了!吃..................吧!";                              
    }else if(score>=1&& score<=59)
    {
        cout<<"不及格!回去...................吧!";
    }else if(score==0)
    {
        cout<<"太差了!考什麼....................分!回家......................吧";                                      
    }else   
    {
    cout<<"輸入錯誤!";
    }
    cout<<endl;                                                                                                                        
    system("pause");
    return 0;                  
}

TOP

返回列表