翻转数的和 题解:
#include <stdio.h>
#include <stdlib.h>
int fun(int n) {
int res = 0;
while (n) {
res = res * 10 + n % 10;
n = n / 10;
}
return res;
}
int main() {
int a, b;
while (scanf("%d %d", &a, &b) != EOF) {
printf("%d\n", fun(a) + fun(b));
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发