교양 어렵네요
문제 번호: 9498
사용한 프로그래밍 언어: C언어
간단한 설명: 마음이 슬퍼지는 성적 계산
#include <stdio.h>
int main(void){
int score;
scanf("%d", &score);
if(score>=90) printf("A\n");
else if(score>=80) printf("B\n");
else if(score>=70) printf("C\n");
else if(score>=60) printf("D\n");
else printf("F\n");
return 0;
}