1. 程式人生 > >C語言—判斷整數位數並逆向正向輸出各位數

C語言—判斷整數位數並逆向正向輸出各位數

C語言基礎篇

接下來給大家介紹一個用基礎演算法判斷一個任意整數的位數並且正向逆向輸出各位數。

#include <stdio.h>  
#include <math.h>  
  
int main()  
{  
    int a,b,c,d,e,f,g,h;  
    int count1 = 1,count2=1;   
    scanf("%d",&a);   //讀取整數
    c = a;  
    d=a;
    f=a;
       while(f / 10 != 0)   //用取餘法判斷位數
    {  
     count1++; 
        g = f % 10;   
        f = f / 10;   
    } 
       printf("%d\n",count1);  //輸出位數
       
       while(a % 10 != 0)   //用整除法正向輸出各個位數
    {  
        h = a / (int)pow(10,(count1-1));  
        printf("%d ",h);  
        a = a % (int)pow(10,count1-1);  
        count1--;  
    }   
    printf("\n");
        while(d / 10 != 0)  //用迴圈除10取餘法逆向輸出各個位數
    {    
        e = d % 10;  
        printf("%d ",e);  
        d = d / 10;   
    }     
    e = d % 10;  
    printf("%d\n",e);  
    return 0;  
} 

希望有更好演算法的網友可以在下方評論!第一次寫,希望可以幫助到你們!