41,逆序輸出——C語言初學者百題大戰之二十
阿新 • • 發佈:2018-10-15
c語言 style 輸出 bsp pre sca return clas scan
#include<stdio.h> int main() { int a,b,c,d,e,n; scanf("%d",&n); a=n/10000; b=n%10000/1000; c=n%10000%1000/100; d=n%10000%1000%100/10; e=n%10000%1000%100%10; if(a!=0) printf("5\n%d%d%d%d%d\n",e,d,c,b,a); else if(a==0&&b!=0) printf("4\n%d%d%d%d\n",e,d,c,b); else if(a==0&&b==0&&c!=0) printf("3\n%d%d%d\n",e,d,c); else if(a==0&&b==0&&c==0&&d!=0) printf("2\n%d%d\n",e,d); else if(a==0&&b==0&&c==0&&d==0&&e!=0) printf("1\n%d\n",e); return 0; }
41,逆序輸出——C語言初學者百題大戰之二十