반응형
https://www.acmicpc.net/problem/4714
간단한 구현 문제였습니다.
📕 풀이방법
📔 입력 및 초기화
1. while loop를 수행합니다. 2. 지역변수 x를 선언 후 입력받습니다. x가 음수면 break합니다.
📔 정답출력
형식에 맞게 출력해줍니다.
📕 Code
#include <bits/stdc++.h>
using namespace std;
int main(){
while(1){
double x;
cin >> x;
if(x < 0) break;
printf("Objects weighing %.2f on Earth will weigh %.2f on the moon.\n", x, x * 0.167);
}
}
'Algorithm > Implementation' 카테고리의 다른 글
(C++) - 백준(BOJ) 4909 : Judging Olympia (0) | 2021.12.08 |
---|---|
(C++) - 백준(BOJ) 4758 : Filling Out the Team (0) | 2021.12.07 |
(C++) - 백준(BOJ) 4655 : Hangover (0) | 2021.12.05 |
(C++) - 백준(BOJ) 4635 : Speed Limit (0) | 2021.12.05 |
(C++) - 백준(BOJ) 4632 : Copier Reduction (0) | 2021.12.04 |