如何连续的输出System.out.println()
9 回答
Ranchooooooo
TA贡献9条经验 获得超9个赞
//有三种方法 int i; //第一种 for(i=0;i<2;i++) { System.out.println(); } //第二种,先判断后执行 while(i<2) { System.out.println(); i++; } //第三种,先执行后判断 do { System.out.println(); i++; }while(i<2);
就是这样。
luckyforever
TA贡献33条经验 获得超48个赞
<script> for(;;) { doucment.write("helloworld"); <%=System.out.println("helloworld)%> alert(); } </script>
添加回答
举报
0/150
提交
取消