https://cses.fi/problemset/task/1068
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
long long n;
cin >> n;
while (1) {
cout << n << " ";
if (n == 1) break;
if (n % 2 == 0) n /= 2;
else n = n * 3 + 1;
}
return 0;
}
'개발자 > algorithm' 카테고리의 다른 글
CSES : Algorithm for problem solving 2020 WEEK 1 (c++) (0) | 2020.06.14 |
---|---|
CSES : Missing Number (c++) (0) | 2020.06.14 |
백준 1969번 : DNA (c++) (0) | 2020.06.14 |
백준 2422번 : 한윤정이 이탈리아에 가서 아이스크림을 사먹는데 (c++) (0) | 2020.06.14 |
백준 1620번 : 나는야 포켓몬 마스터 이다솜 (c++) (0) | 2020.06.14 |