#include<stdio.h>
int main()
{
printf("C programming %s","is %s for health","good");
return 0;
}
这是打印c程序对健康有益的一种方法。
根据我的想法,首先是“%s有益健康”,“好”将呈现,然后“ c编程%s”,有益健康。
最佳答案
#include<stdio.h>
int main()
{
printf("C programming is %s for health","good");
printf("C programming is good for health");
return 0;
}
您可以像使用此代码中的任何方式一样简单地编写它。
但是您编写的方式是错误的,因为它只是
printf()
的第一个参数可以使用%s。
所有其他参数充当简单字符串
关于c - printf(“C编程%s”,“是健康的%s”,“好”);,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48994204/