试试C里面的函数sprintf;int b=?;char str[N];//N 足够大sprintf(str,"%d",b);printf("%s",str);试试看怎么样。。。(b的类型不一定要求是int型的,float也行。。)