编写程序,使用循环结构,输出: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

这一题除了使用while之外,还需要用到ifC语言 的
2024-12-21 03:19:17
推荐回答(1个)
回答1:

#include

int main(void)
{
int i = 0;
while (1)
{
printf("%d ", ++i);
if (i == 15)
break;
}
return 0;
}