標籤: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++】