如何编写简单增量的 While 循环?
我需要为以下内容编写一个 WHILE 循环: “hello”是输出的一部分
8 9 11 14 hello 18
while(counter < 18 )
{
System.out.print(" " + counter);
counter = counter + 1 ;
if(counter > 14 && counter < 18){
System.out.print(" hello ");
}
}
以上是我的示例代码。我无法弄清楚如何将其增加 1、2 然后 3。有人可以帮忙吗?
I will need to write a WHILE loop for the following: "hello" is part of the output
8 9 11 14 hello 18
while(counter < 18 )
{
System.out.print(" " + counter);
counter = counter + 1 ;
if(counter > 14 && counter < 18){
System.out.print(" hello ");
}
}
The above is my sample code. I am unable to figure out how to increase it by 1, 2 then 3. Can anyone help , please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要一个额外的变量来存储您增加的金额。该变量本身必须在每次循环运行时加一。
You need an additional variable that stores the amount by which you increment. This variable itself has to be incremented by one in each run of the loop.
试试这个:
Try this :