문제 링크입니다: https://www.acmicpc.net/problem/4892
4892번: 숫자 맞추기 게임
입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있고, n0으로 이루어져 있다. (0 < n0 < 1,000,000) 입력의 마지막 줄에는 0이 하나 주어진다.
www.acmicpc.net
간단한 구현 문제였습니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main(void) | |
{ | |
ios_base::sync_with_stdio(0); | |
cin.tie(0); | |
for (int idx = 1; ; idx++) | |
{ | |
int n0; | |
cin >> n0; | |
if (n0 == 0) | |
{ | |
break; | |
} | |
int n1 = 3 * n0; | |
int n2; | |
cout << idx << ". "; | |
if (n1 % 2) | |
{ | |
cout << "odd "; | |
n2 = (n1 + 1) / 2; | |
} | |
else | |
{ | |
cout << "even "; | |
n2 = n1 / 2; | |
} | |
int n3 = 3 * n2; | |
int n4 = n3 / 9; | |
cout << n4 << "\n"; | |
} | |
return 0; | |
} |


개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 4922번 Walk Like an Egyptian (0) | 2021.05.17 |
---|---|
백준 4909번 Judging Olympia (0) | 2021.05.16 |
백준 4890번 Tiles of Tetris, NOT! (0) | 2021.05.16 |
백준 4880번 다음수 (0) | 2021.05.16 |
백준 4766번 일반 화학 실험 (0) | 2021.05.16 |