微信扫一扫
int main()
{
int i = 0;
for(i=1;i <= 100;i++)
while(i%2 == 1)
printf("%d ",i);
i++;
}
return 0;
相关推荐