#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
{
int score;
scanf("%d",& score);
if(score>90) { printf("A"); }
else if(score>80 && score<90) { printf("B"); }
else if(score>70 && score<80) { printf("C"); }
else if(score>60 && score<60) { printf("D"); }
else { printf("E"); }
return 0;
}
沒有留言:
張貼留言