#include<stdio.h>
int main()
{
int x,y;
for (x=0,y=0;x<2 && y<5;++x,y++)//&&代表并且
{
printf("hehe\n");
}
return 0;
}
for循环变种2
阅读 51
2023-11-01
#include<stdio.h>
int main()
{
int x,y;
for (x=0,y=0;x<2 && y<5;++x,y++)//&&代表并且
{
printf("hehe\n");
}
return 0;
}
相关推荐
精彩评论(0)