标签:style blog color sp div log bs as nbsp
1 /* 2 题目:给一个不多于 5 位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。 3 */ 4 5 int 6 count(int input) { 7 int nums = 0; //记录有多少位. 8 while(input > 0) { 9 printf("%d ", input % 10); //打印后面的位数. 10 input /= 10; 11 ++nums; 12 } 13 14 return nums; 15 }
标签:style blog color sp div log bs as nbsp
原文地址:http://www.cnblogs.com/listened/p/4150491.html