輸出一組不超過五位的數字的位數 及正序、倒序輸出每一位問題

1.求出它是幾位數; 2.分別輸出每一位數字; 3.按逆序輸出各位數字,例如原數爲321,應輸出123。 代碼如下: #include<stdio.h> #include<stdlib.h> void GetFigures(int a) { int t[5]; int i = 0; while(a!=0) { t[i]=a%10; a/=10;
相關文章
相關標籤/搜索