简单的Java模数问题

发布于 2024-10-31 08:57:33 字数 238 浏览 1 评论 0原文

我有以下代码:

for(int i=0;i<=100;i++) {
            if(i % 11) {
                System.out.println(i);
            }
        }

我只想让代码打印可以被 11 整除的数字。但它告诉我这一点: 类型不匹配:无法从 int 转换为 boolean

我做错了什么?

I have the following code:

for(int i=0;i<=100;i++) {
            if(i % 11) {
                System.out.println(i);
            }
        }

I just want the code to print the number if it's divisible by 11. It tells me this though: Type mismatch: cannot convert from int to boolean

What am I doing wrong?

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

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

发布评论

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

评论(6

傲娇萝莉攻 2024-11-07 08:57:33

你需要把它变成这样的条件:

if(i % 11 == 0) {

You need to turn it into a condition like this:

if(i % 11 == 0) {
难以启齿的温柔 2024-11-07 08:57:33
if((i % 11) == 0)

应使用 == 运算符进行检查。 i%11 返回一个 int,默认情况下无法转换为 boolean,编译器会对此进行抱怨。

if((i % 11) == 0)

Should use an == operator to check. i%11 returns an int which cannot be converted to boolean by default and the compiler is complaining about it.

〆凄凉。 2024-11-07 08:57:33

这样做

if(i % 11==0) {
     System.out.println(i);
}

% 运算符返回一个 int,而 if() 只能检查 boolean 值。

Do it like this

if(i % 11==0) {
     System.out.println(i);
}

The % operator returns an int, whereas if() can only check boolean values.

紫﹏色ふ单纯 2024-11-07 08:57:33

您必须检查模数是否为零(意味着它可以被 11 整除):

if(i % 11 == 0) //...

You have to check if the modulus is zero (meaning it is divisible by 11):

if(i % 11 == 0) //...
烟若柳尘 2024-11-07 08:57:33

试试这个(我已经改变了你的条件):

for(int i=0;i<=100;i++) {
        if((i % 11) == 0) {
            System.out.println(i);
        }
    }

Try this (I've changed your condition):

for(int i=0;i<=100;i++) {
        if((i % 11) == 0) {
            System.out.println(i);
        }
    }
静水深流 2024-11-07 08:57:33

if 表达式需要传递一个布尔值作为条件。

试试这个: (i % 11) == 0

完整代码:

for(int i=0; i<=100; i++) {
    if( (i % 11)==0 ) {
        System.out.println(i);
    }
}

if expression requires a boolean value to be passed as condition.

Try this: (i % 11) == 0

Full code:

for(int i=0; i<=100; i++) {
    if( (i % 11)==0 ) {
        System.out.println(i);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文