문제 링크입니다: www.acmicpc.net/problem/2754
2754번: 학점계산
어떤 사람의 C언어 성적이 주어졌을 때, 평점은 몇 점인지 출력하는 프로그램을 작성하시오. A+: 4.3, A0: 4.0, A-: 3.7 B+: 3.3, B0: 3.0, B-: 2.7 C+: 2.3, C0: 2.0, C-: 1.7 D+: 1.3, D0: 1.0, D-: 0.7 F: 0.0
www.acmicpc.net
간단한 구현 문제였습니다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
using namespace std; | |
int main(void) | |
{ | |
ios_base::sync_with_stdio(0); | |
cin.tie(0); | |
string grade; | |
cin >> grade; | |
if (grade == "F") | |
{ | |
cout << "0.0\n"; | |
return 0; | |
} | |
double result = 0.0; | |
switch (grade[0]) | |
{ | |
case 'A': | |
result = 4.0; | |
break; | |
case 'B': | |
result = 3.0; | |
break; | |
case 'C': | |
result = 2.0; | |
break; | |
case 'D': | |
result = 1.0; | |
break; | |
} | |
switch (grade[1]) | |
{ | |
case '+': | |
result += 0.3; | |
break; | |
case '-': | |
result -= 0.3; | |
break; | |
} | |
printf("%.1f\n", result); | |
return 0; | |
} |


개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 21591번 Laptop Sticker (0) | 2021.04.25 |
---|---|
백준 2765번 자전거 속도 (0) | 2021.04.25 |
백준 21598번 SciComLove (0) | 2021.04.25 |
백준 11444번 피보나치 수 6 (0) | 2021.04.25 |
백준 10870번 피보나치 수 5 (0) | 2021.04.25 |