printf()函数的使用
在这个例子中,将展示格式转换字符、浮点精度和域宽的使用
#include <stdio.h>
int main()
{
int a=-1;
float b=1243.9341;
double c=24212345.2478;
char d='A';
int e=65;
printf("a=%d,%5d, %u, %o, %x\n",a, a,a,a,a,a);
printf("b=%f, %1.2f, %5.4f, e\n", b, b, b, b);
printf("c=%1f, %8.31f,%g\n",c,c,c,c);
printf("d=%c,%8c\n", d, d);
return 0;
}
主要是不理解怎么来的