teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1068)

2019-06-20
teddy8

문제

URL : https://codeup.kr/problemsetsol.php?psid=23


소스코드

// 정수 1개 입력받아 평가 출력하기
// input : 90
// output : A
// 평가기준
// 90 ~ 100 : A
// 70 ~ 89  : B
// 40 ~ 69  : C
//  0 ~ 39  : D

#include <iostream>

using namespace std;

int main()
{
	int n;
	cin >> n;
	
	if      (n >= 90 && n <= 100) cout << "A" << endl;
	else if (n >= 70 && n <= 89)  cout << "B" << endl;
	else if (n >= 40 && n <= 69)  cout << "C" << endl;
	else if (n >= 0  && n <= 39)  cout << "D" << endl;
	else cout << "0 ~ 100으로 입력해주세요." << endl;

	return 0;
}


Comments

Content