본문 바로가기
백준

[9498] 시험 성적

by Jcoder 2018. 5. 14.


#include <stdio.h>
int main()
{
int n;
scanf("%d", &n);
if (n>=90 && n<=100)
{
printf("A");
}
else if (n>=80 && n<90)
{
printf("B");
}
else if (n>=70 && n<80)
{
printf("C");
}
else if (n>=60 && n<70)
{
printf("D");
}
else
{
printf("F");
}
return 0;
}


'백준' 카테고리의 다른 글

[10871] X보다 작은 수  (0) 2018.05.14
[10817] 세 수  (0) 2018.05.14
[4673] 셀프 넘버  (0) 2018.05.14
[15552] 빠른 A+B  (0) 2018.05.14
[11721] 열 개씩 끊어 출력하기  (0) 2018.05.14