Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Subscribe
- mysql
- 오늘도 우라라 펫
- C언어
- 데이터 베이스
- 토픽
- ros
- while
- 오늘도 우라라 펫 공략
- 우분투
- MSG
- 그랑사가
- 기초
- 오늘도 우라라
- ubuntu
- 반복문
- 등차수열
- Linux
- publish
- LeetCode
- 리눅스
- install opencv-4.4.0 on ubuntu 22.04
- 오늘도 우라라 공략
- JungOl
- mariaDB
- 프로그래밍
- 환경설정
- topic
- C++
- 마리아 DB
Archives
- Today
- Total
하루의 쉼터
[조건문] 9498. 시험 성적 - C++ 본문
반응형
| 9498. 시험 성적
Category :
조건문과 사칙연산
Title :
9498. 시험 성적
Rank :
Bronze
Language :
C++
Question :
시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.
Condition :
Input
첫째 줄에 시험 점수가 주어진다. 시험 점수는 0보다 크거나 같고, 100보다 작거나 같은 정수이다.
Output
시험 성적을 출력한다.
Code :
#include<iostream>
class cl_solution{
public :
void fn_run(int score);
};
void cl_solution::fn_run(int score){
if (score >= 0 && score<=100) {
if (score >= 90)
std::cout << "A" << std::endl;
else if(score>=80&& score<=89)
std::cout << "B" << std::endl;
else if (score >= 70 && score <= 79)
std::cout << "C" << std::endl;
else if (score >= 60 && score <= 69)
std::cout << "D" << std::endl;
else
std::cout << "F" << std::endl;
}
}
int main() {
cl_solution sol;
int score = 0;
std::cin >> score;
sol.fn_run(score);
return 0;
}
BackJoon :
https://www.acmicpc.net/problem/9498
GitHub :
반응형
'Coding Test > BaekJoon' 카테고리의 다른 글
[조건문] 14681. 사분면 고르기 - C++ (0) | 2022.01.12 |
---|---|
[조건문] 2753. 윤년 - C++ (0) | 2022.01.12 |
[조건문] 1330. 두 수 비교하기 - C++ (0) | 2022.01.11 |
[기초수학] 1193. 분수찾기 - C++ (0) | 2022.01.11 |
[사칙연산] 10430. 나머지 - C++ (0) | 2022.01.11 |
Comments