%的输出

#include <stdio.h>
int main()
{
int a=90;
printf("%d%%\n",a);
return 0;
}

这样就会在屏幕上得到 90%

原文地址:https://www.cnblogs.com/XDJjy/p/3053279.html