C 練習(xí)實(shí)例29
題目:給一個(gè)不多于5位的正整數(shù),要求:一、求它是幾位數(shù),二、逆序打印出各位數(shù)字。
程序分析:學(xué)會(huì)分解出每一位數(shù),如下解釋。
程序源代碼:
// Created by m.hgci.cn on 15/11/9. // Copyright © 2015年 W3Cschool教程. All rights reserved. // #include <stdio.h> int main( ) { long a,b,c,d,e,x; printf("請(qǐng)輸入 5 位數(shù)字:"); scanf("%ld",&x); a=x/10000; /*分解出萬(wàn)位*/ b=x%10000/1000; /*分解出千位*/ c=x%1000/100; /*分解出百位*/ d=x%100/10; /*分解出十位*/ e=x%10; /*分解出個(gè)位*/ if (a!=0){ printf("為 5 位數(shù),逆序?yàn)椋?%ld %ld %ld %ld %ld\n",e,d,c,b,a); } else if(b!=0) { printf("為 4 位數(shù),逆序?yàn)椋?%ld %ld %ld %ld\n",e,d,c,b); } else if(c!=0) { printf("為 3 位數(shù),逆序?yàn)椋?ld %ld %ld\n",e,d,c); } else if(d!=0) { printf("為 2 位數(shù),逆序?yàn)椋?%ld %ld\n",e,d); } else if(e!=0) { printf("為 1 位數(shù),逆序?yàn)椋?ld\n",e); } }
以上實(shí)例輸出結(jié)果為:
請(qǐng)輸入 5 位數(shù)字:12345 為 5 位數(shù),逆序?yàn)椋?5 4 3 2 1
更多建議: