输出优化

void Cout(int x)
{
    if(x>9) Cout(x/10);
    putchar(x%10+'0');
}

 

posted @ 2017-08-07 16:58  WeiAR  阅读(90)  评论(0编辑  收藏  举报