1357 : 뒤집힌 덧셈

풀이

돌리고 돌리고 돌리고~

코드

#include <cstdio>

int f(int n) {
    int r = 0;
    while (n) r *= 10, r += n % 10, n /= 10;
    return r;
}

int main() {
    int a, b;
    scanf("%d %d", &a, &b);
    printf("%d", f(f(a) + f(b)));
    return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-04-03 15:46

Read more posts by this author