编写一个“查询控制的”;循环将继续从用户输入 int 值?
如何编写一个“查询控制”循环,该循环将继续从用户输入 int 值,将每个值添加到 int 值总和中,然后询问用户是否还有其他值要输入,直到用户说没有更多的价值。我不知道如何使用 do 语句,所以我正在考虑使用 while 循环或可能的 for 循环。但是,我不知道如何在这种情况下应用它。有人能给我一些指点吗?
How do you write a “query-controlled” loop that will continue to input int values from the user, adding each to the int value sum, and then ask if the user has another value to input, until the user says that there are no more values. I don't know how to use do statements so I was thinking of using while loops or possibly a for loop. However, I don't know how to apply it in this situation. Could someone give me some pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您知道如何使用 while 循环,那么 do 循环也同样简单,并且是您在这种情况下应该使用的:
If you know how to use a while loop, a do loop is just as easy and is what you should use in this case: