/* 逆序输出一个正整数 */ #include<stdio.h> int main(void) { int x; printf("Enter x:"); scanf_s("%d",&x); while(x!=0){ printf("%d",x%10); x=x/10; } return 0; }