상세 컨텐츠

본문 제목

[백준]조건문 9498번 시험성적 C,C++

본문

728x90
반응형

#include <stdio.h>

int main() {
	int score;
	scanf("%d", &score);
	
	if (score >= 90)
		printf("A\n");
	else if (score >= 80)
		printf("B\n");
	else if (score >= 70)
		printf("C\n");
	else if (score >= 60)
		printf("D\n");
	else
		printf("F\n");

	return 0;
}

if ~ else if ~ else 문

728x90
반응형

관련글 더보기