慕雪3349881
2017-11-23 17:27
while(i<10)
{
i++;
printf("第%d遍书写:"computer\n",i);
}
printf那里可以不要i吗? 变成printf("computer\n");可以吗
printf("computer\n")没有i就不知道是第几遍书写,printf("第%d遍书写:"computer\n",i);中会用i的值替换%d的位置,输出的效果就是"第i遍书写:computer"
输出语句中""不成对
C语言入门
926020 学习 · 20793 问题
相似问题