hdu2004 成績轉換【C++】

來源:互聯網
上載者:User

標籤:c++   ota   資料   bottom   sam   輸入資料   input   java   bsp   

成績轉換

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 173950    Accepted Submission(s): 76178


Problem Description輸入一個百分制的成績t,將其轉換成對應的等級,具體轉換規則如下:
90~100為A;
80~89為B;
70~79為C;
60~69為D;
0~59為E; 

 

Input輸入資料有多組,每組佔一行,由一個整數組成。 

 

Output對於每組輸入資料,輸出一行。如果輸入資料不在0~100範圍內,請輸出一行:“Score is error!”。 

 

Sample Input5667100123 

 

Sample OutputEDAScore is error!
 1 #include<cstdio> 2 using namespace std; 3 int main() 4 { 5     int x; 6     while(scanf("%d",&x)!=EOF) 7     { 8         if(x>=90 && x <=100) 9         {10             printf("A\n");11         }12         else if(x>=80 && x <=89)13         {14             printf("B\n");15         }16         else if(x>=70 && x <=79)17         {18             printf("C\n");19         }20         else if(x>=60 && x <=69)21         {22             printf("D\n");23         }24         else if(x>=0 && x <=59)25         {26             printf("E\n");27         }28         else29         {30             printf("Score is error!\n");31         }32     }33     return 0;34 }

 

hdu2004 成績轉換【C++】

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.