%d.%s 等等 像这种的是什么意是
%d:格式化输出一个整数,如:
int a = 12; printf("%d\n",a);
%s:格式化输出一个字符串,如:
char a[] = "Hello,world!"; printf("%s\n",a);