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
5667100
123
sample output
edascore is error!
#include using namespace std;
int main()
{ int n;
while(cin>>n)
{if(n>100||n<0)
cout<<"score is error!"<=90&&n<=100)
cout<<'a'<=80&&n<=89)
cout<<'b'<=70&&n<=79)
cout<<'c'<=60&&n<=69)
cout<<'d'<=0&&n<=59)
cout<<'e'<
2004 成績轉換
problem description 輸入乙個百分制的成績t,將其轉換成對應的等級,具體轉換規則如下 90 100為a 80 89為b 70 79為c 60 69為d 0 59為e input 輸入資料有多組,每組佔一行,由乙個整數組成 output 對於每組輸入資料,輸出一行。如果輸入資料不在0...
2004 成績轉換
problem description 輸入乙個百分制的成績t,將其轉換成對應的等級,具體轉換規則如下 90 100為a 80 89為b 70 79為c 60 69為d 0 59為e input 輸入資料有多組,每組佔一行,由乙個整數組成。output 對於每組輸入資料,輸出一行。如果輸入資料不在0...
2004成績轉換c
problem description 輸入乙個百分制的成績t,將其轉換成對應的等級,具體轉換規則如下 90 100為a 80 89為b 70 79為c 60 69為d 0 59為e input 輸入資料有多組,每組佔一行,由乙個整數組成。output 對於每組輸入資料,輸出一行。如果輸入資料不在0...