%s加不加有用吗?
如果输出字串符的话,都可以。?
%s就像%d,%lf一样,你输出时,printf("%d",n)输出整型数n的具体值,如果没有%d,就会报错。而%s是用来输出字符串的。比如printf ("%s","china")