杭電OJ 2004 成績轉換

2021-07-27 15:05:02 字數 670 閱讀 1027

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 input

56

67100

123

sample output

eda

score is error!

**如下:

#includeint main() 

if(t >= 90 && t <= 100 )

if(t >= 80 && t <= 89)

if(t >= 70 && t <= 79)

if(t >= 60 && t <= 69)

if(t >= 0 && t <= 59)

} return 0;

}

杭電ACM 2004 成績轉換

problem description 輸入乙個百分制的成績t,將其轉換成對應的等級,具體轉換規則如下 90 100為a 80 89為b 70 79為c 60 69為d 0 59為e input 輸入資料有多組,每組佔一行,由乙個整數組成。output 對於每組輸入資料,輸出一行。如果輸入資料不在0...

杭電 acm 2004 成績轉換

題目 problem description 輸入乙個百分制的成績t,將其轉換成對應的等級,具體轉換規則如下 90 100為a 80 89為b 70 79為c 60 69為d 0 59為e input 輸入資料有多組,每組佔一行,由乙個整數組成。output 對於每組輸入資料,輸出一行。如果輸入資料...

2004 成績轉換

problem description 輸入乙個百分制的成績t,將其轉換成對應的等級,具體轉換規則如下 90 100為a 80 89為b 70 79為c 60 69為d 0 59為e input 輸入資料有多組,每組佔一行,由乙個整數組成。output 對於每組輸入資料,輸出一行。如果輸入資料不在0...