P8.打印整数
时间:2014-01-14 19:49:11
收藏:0
阅读:505
void
printInteger(int
n) { if
(n>=10) { printInteger(n/10); } printf("%d,",(n%10));} |
原文:http://www.cnblogs.com/xjsllll/p/3512904.html
评论(0)