C语言printf输出百分号
%和转义字符一样特殊,所以输出%是用%%,而不是%。
【转】C语言 输出百分号(%)的方法
http://www.slyar.com/blog/printf-percent-symbol.html
在C语言中,如何输出百分号呢?
很简单,只要在格式控制符里输入2个 %% 就可以了,例如:
#include <stdio.h>
int main()
{
int a=90;
printf("%d%%n",a);
return 0;
}
这样就会在屏幕上得到 90%
转载请注明:在路上 » C语言printf输出百分号