#include <stdio.h>
int main()
{
int score;
scanf("%d", &score);
//시험 점수를 입력받아 90 ~100점은 A, 80 ~89점은 B, 70 ~79점은 C, 60 ~69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.
if (90 <= score && score <= 100) printf("A");
else if (80 <= score && score <= 89) printf("B");
else if (70 <= score && score <= 79) printf("C");
else if (60 <= score && score <= 69) printf("D");
else printf("F");
}
'🧐 Algorithm' 카테고리의 다른 글
[백준 2442번 2443번 2444번 2446번 Java] 별찍기 5~9 (0) | 2021.01.22 |
---|---|
[백준 2438번 2439번 2440번 2441번 Java] 별찍기 1~4 (0) | 2021.01.22 |
[백준 1330번 C/C언어] 두 수 비교하기 (0) | 2021.01.22 |
[백준 2588번 C/C언어] 곱셈(자리수 계산) (0) | 2021.01.22 |
[백준 10869번 C/C언어] 사칙연산 출력 (0) | 2021.01.22 |