알고리즘/BOJ

백준 2712번 미국 스타일

꾸준함. 2018. 9. 26. 14:11

문제 링크입니다: https://www.acmicpc.net/problem/2712


부동소수점만 유의한다면 쉽게 풀 수 있는 문제였습니다.


#include <iostream>

#include <string>

using namespace std;

 

int main(void)

{

        ios_base::sync_with_stdio(0);

        cin.tie(0);

        int T;

        cin >> T;

 

        for (int t = 0; t < T; t++)

        {

                 pair<double, string> temp;

                 cin >> temp.first >> temp.second;

 

                 if (temp.second == "kg")

                         printf("%.4lf lb\n", temp.first * 2.2046);

                 else if (temp.second == "lb")

                         printf("%.4lf kg\n", temp.first * 0.4536);

                 else if (temp.second == "l")

                         printf("%.4lf g\n", temp.first * 0.2642);

                 else if (temp.second == "g")

                         printf("%.4lf l\n", temp.first * 3.7854);

        }

        return 0;

}


개발환경:Visual Studio 2017


지적, 조언, 질문 환영입니다! 댓글 남겨주세요~

반응형

'알고리즘 > BOJ' 카테고리의 다른 글

백준 1302번 베스트셀러  (0) 2018.09.26
백준 1568번 새  (0) 2018.09.26
백준 5901번 Relocation  (0) 2018.09.26
백준 5900번 Cow IDs  (0) 2018.09.26
백준 1527번 금민수의 개수  (0) 2018.09.26