C언어 문제 - (questions in C)
- 0~100 사이의 점수를 입력받아 90~100 사이면 A, 80~89 사이면 B, 70~79 사이면 C,
60~69 사이면 D, 나머지는 F를 출력하라.
#include <stdio.h>
int main (void) { int score; scanf("%d", &score); if( score >= 90 && score <= 100) { printf("A\n"); } else if( score >= 80 && score <= 89) { printf("B\n"); } else if( score >= 70 && score <= 79) { printf("C\n"); } else if( score >= 60 && score <= 69) { printf("D\n"); } else { printf("F\n"); } }
|
'프로그래밍 언어들 > C 문제풀이' 카테고리의 다른 글
C언어 문제 - 세 정수 중 가장 큰 수(최대값) 출력하기 (questions in C) (0) | 2016.10.28 |
---|---|
C언어 문제 - 짝수 또는 홀수 판단하기 (questions in C) (0) | 2016.10.28 |
C언어 문제 - 마이너스(-) 연산자 없이 뺄셈 하기 (questions in C) (0) | 2016.10.28 |
C언어 문제 - 거스름돈 계산 (questions in C) (1) | 2016.10.28 |
C언어 문제 - 입력받은 세 자리 수 거꾸로 출력 (questions in C) (0) | 2016.10.28 |