Recent Posts
Notice
No Rules Rules
학점계산 (feat. 백준, 2754번) 본문
728x90
반응형
학점계산
https://www.acmicpc.net/problem/2754
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
string arr1[] = {"A+", "A0", "A-", "B+", "B0", "B-", "C+", "C0", "C-", "D+", "D0", "D-", "F"};
string arr2[] = {"4.3", "4.0", "3.7", "3.3", "3.0", "2.7", "2.3", "2.0", "1.7", "1.3", "1.0", "0.7", "0.0"};
string str;
cin >> str;
cout << arr2[distance(arr1, find(arr1, arr1 + 13, str))];
return 0;
}
// *&)*@*
반응형
입력받은 문자열의 인덱스와 동일한 인덱스의 학점값을 출력하였습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
별 찍기 - 4 (feat. 백준, 2441번) (0) | 2022.10.20 |
---|---|
세 수 (feat. 백준, 10817번) (0) | 2022.10.20 |
A → B (feat. 백준, 16953번) (0) | 2022.10.20 |
개수 세기 (feat. 백준, 10807번) (0) | 2022.10.19 |
행렬 덧셈 (feat. 백준, 2738번) (0) | 2022.10.19 |
Comments