简单点 初入 编程 好多名称看不懂有大佬能不能 解决下这个问题
#include "stdio.h" void main() { int n; scanf("%d",&n); while(n>0){ printf("%d",n%10); n = n/10; } }