三位数字反向输出,输入换行开始#include<stdio.h>void main(){int x,y;scanf("%d",&x);do{y=x%10;x/=10;printf("%d",y);}while(x);}