inline void write(int x) { if(x>9)write(x/10); putchar(x%10+'0'); } 思路:递归,分解,用putchar以字符的方式输出,达到“快速” 谢谢阅读