#include<stdio.h>
int main()
{
for( ; ; )//for循环的省略注意事项:1.三个内容均可省略。2.for循环的判断被省略条件为恒为正。3.不要随便省略。
{
printf("hehe\n");
}
return 0;
}
for循环变种1
阅读 25
2023-11-01
#include<stdio.h>
int main()
{
for( ; ; )//for循环的省略注意事项:1.三个内容均可省略。2.for循环的判断被省略条件为恒为正。3.不要随便省略。
{
printf("hehe\n");
}
return 0;
}
相关推荐
精彩评论(0)