반응형
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 32 33 34 | #include <iostream> using namespace std; int main() { int a, b; scanf("%d %d", &a, &b); int newA = 0, newB = 0; while (a >= 1) { newA += a % 10; a /= 10; if (a >= 1) newA *= 10; } while (b >= 1) { newB += b % 10; b /= 10; if (b >= 1) newB *= 10; } if (newA > newB) cout << newA << "\n"; else cout << newB << "\n"; return 0; } | cs |
'알고리즘 > 백준' 카테고리의 다른 글
4344번 평균은 넘겠지 (0) | 2018.10.09 |
---|---|
2920번 음계 (0) | 2018.10.09 |
2675번 문자열 반복 (0) | 2018.10.09 |
2448번 별찍기 (0) | 2018.10.09 |
1157번 단어공부 (0) | 2018.10.09 |