2754 : 학점계산

풀이

호호

코드

#include <cstdio>
int tc;
double r;
char s[3];
int main() {
    scanf("%s", s);
    if (s[0] == 'A') r = 4; if (s[0] == 'C') r = 2; 
    if (s[0] == 'B') r = 3; if (s[0] == 'D') r = 1;
    if (s[1] == '+') r += 0.3; if (s[1] == '-') r -= 0.3;
    printf("%.1lf", r);
    return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-04-04 19:31

Read more posts by this author