今日学习:C语言数的逆序int main(){ int x; int y; scanf("%d", &x); y = x % 10; printf("%d", y); while (x>=10) { x = x / 10; y = x % 10; printf("%d", y); } }