void
printInteger(
int
n) {
if
(n>=10) {
printInteger(n/10);
}
printf
(
"%d,"
,(n%10));
P8.打印整数
原文:http://www.cnblogs.com/xjsllll/p/3512904.html