minstory
백준 9498번: 시험 성적 [C언어] 본문
#include <stdio.h>
int main(void)
{
int score;
scanf("%d", &score);
if(score>=90)
printf("A");
else if(score>=80)
printf("B");
else if(score>=70)
printf("C");
else if(score>=60)
printf("D");
else
printf("F");
return 0;
}
'백준 문제풀이 [C언어] > if문' 카테고리의 다른 글
백준 1110번: 더하기 사이클 [C언어] *백준 오답처리.. (0) | 2019.05.28 |
---|---|
백준 4344번: 평균은 넘겠지 [C언어] (0) | 2019.05.28 |
백준 1546번: 평균 [C언어] (0) | 2019.05.28 |
백준 10871번: X보다 작은 수 [C언어] (0) | 2019.05.27 |
백준 10817번: 세 수 [C언어] (0) | 2019.05.27 |
Comments