输出优化

void Cout(int x)
{
    if(x>9) Cout(x/10);
    putchar(x%10+'0');
}
原文地址:https://www.cnblogs.com/war1111/p/7300012.html