编写一个“查询控制的”;循环将继续从用户输入 int 值?

发布于 2024-12-11 01:04:31 字数 162 浏览 0 评论 0原文

如何编写一个“查询控制”循环,该循环将继续从用户输入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷途知返 2024-12-18 01:04:31

如果您知道如何使用 while 循环,那么 do 循环也同样简单,并且是您在这种情况下应该使用的:

do
{
    // code to execute at least once
} while(condition);

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:

do
{
    // code to execute at least once
} while(condition);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文