minstory

백준 9498번: 시험 성적 [C언어] 본문

백준 문제풀이 [C언어]/if문

백준 9498번: 시험 성적 [C언어]

mjuu 2019. 5. 27. 13:09

#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;
}

Comments