码迷,mamicode.com
首页 > 其他好文 > 详细

c-逆序输出整数

时间:2014-12-08 10:38:23      阅读:173      评论:0      收藏:0      [点我收藏+]

标签: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 }

 

c-逆序输出整数

标签:style   blog   color   sp   div   log   bs   as   nbsp   

原文地址:http://www.cnblogs.com/listened/p/4150491.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!