翻转数的和 题目描述输入输出样例输入样例输出源代码关于这题 题目描述 输入 输出 样例输入 样例输出 源代码 #include<stdio.h> int main() { int a, b; int f(int a); while (scanf_s("%d %d", &a, &b) != EOF) { a = f(a); b = f(b); printf("%d\n", a + b); } return 0; } int f(int a) { int t = 0; while (a > 0) { t = t * 10 + a % 10; a = a / 10; } return t; } 关于这题