求一個數是幾位數的幾種方法

第一種:數字分割法ios 代碼以下:函數 #include <stdio.h> void main() { int x,b=0; scanf("%d",&x); while(x>0) { x=x/10; b++; } printf("%d ",b); } 第二種:log10法spa C語言中只有log和log10兩
相關文章
相關標籤/搜索