P8.打印整数

void printInteger(int n) { 
    if (n>=10) {
        printInteger(n/10);
    }
    
    printf("%d,",(n%10));
}
原文地址:https://www.cnblogs.com/xjsllll/p/3512904.html