Java“<=”运算符不会给出输出,但“<”会给出输出。做。有什么问题吗?

发布于 2025-01-17 02:53:10 字数 572 浏览 0 评论 0 原文

我正在 Java 中处理 while 循环,但 <= 运算符不遵循条件,但 < 条件工作正常。我不明白这里有什么问题。

int m = 0;
int ssum = 0;

while (ssum <= 10) 
{
    m++;
    ssum = ssum + m;
    System.out.println(m + "  " + ssum + "\n" );
}

使用 <= 运算符输出 m 和 ssum:(当 ssum 为 10 时应该结束,但会一直持续到 15)

使用 <= 运算符输出 m 和 ssum

使用 < 运算符输出 m 和 ssum:

使用 < 运算符 输出 m 和 ssum

I'm working on a while loop in Java, but the <= operator isn't following the conditions, but the < condition works fine. I don't understand what's the issue here.

int m = 0;
int ssum = 0;

while (ssum <= 10) 
{
    m++;
    ssum = ssum + m;
    System.out.println(m + "  " + ssum + "\n" );
}

Output for m and ssum with the <= operator: (it should end when ssum is 10, but it goes on till 15)

output for m and ssum with <= operator

Output for m and ssum with < operator:

output for m and ssum with < operator

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱殇璃 2025-01-24 02:53:10

当评估 while 循环 if 条件时,'ssum' 的值为 10,然后在循环内更改为 15 并打印为 15。

the value of 'ssum' is 10 when the while loop if condition is evaluated, which then gets changed to 15 inside the loop and printed as 15.

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