欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

數的倒置c語言

呂致盈2年前19瀏覽0評論

數的倒置c語言?

代碼如下

#include<stdio.h> void main() { int n,n2=0,i=0,t,x; //五位數的話int足夠了 scanf ("%d",&n); x=n; while (x!=0) { i++; x=x/10; //我不會告訴你原來這里是一個死循環 } printf("n為位數%d",i); for(t=1;t<=i;t++) { n2=n%10+n2*10; n/=10; } printf("n倒置后為%d\n",n2);}