티스토리 뷰

Algorithm/BOJ

백준 2754번 C++

poopooreum 2023. 8. 13. 18:36
반응형
백준 2754번 C++

https://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



정답 코드

#include<iostream>
#include<string>
using namespace std;
int main(){
    string str;
    cin>>str;
    if(str=="A+")
        cout<<"4.3";
    else if(str=="A0")
        cout<<"4.0";
    else if(str=="A-")
        cout<<"3.7";
    else if(str=="B+")
        cout<<"3.3";
    else if(str=="B0")
        cout<<"3.0";
    else if(str=="B-")
        cout<<"2.7";
    else if(str=="C+")
        cout<<"2.3";
    else if(str=="C0")
        cout<<"2.0";
    else if(str=="C-")
        cout<<"1.7";
    else if(str=="D+")
        cout<<"1.3";
    else if(str=="D0")
        cout<<"1.0";
    else if(str=="D-")
        cout<<"0.7";
    else if(str=="F")
        cout<<"0.0";          
}

반응형

'Algorithm > BOJ' 카테고리의 다른 글

백준 2798번 C++  (0) 2023.08.13
백준 2776번 C++  (0) 2023.08.13
백준 2753번 C++  (0) 2023.08.13
백준 2752번 C++  (0) 2023.08.13
백준 2751번 C++  (0) 2023.08.13
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
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
글 보관함