首页
编程
java
php
前端
首页
编程
java
php
前端
写出程序段的输出结果
n=0;
for(;;)
{
if(n>5 && n%3==1)
{
printf("%d",n);
break;
}
printf("%d,",n+=2);
}
2 4 6 8 10
点击展开全文