gpt4 book ai didi

java - "exception in thread main/by zero"错误

转载 作者:太空宇宙 更新时间:2023-11-04 10:07:10 25 4
gpt4 key购买 nike

我的完美数程序有一个错误“主线程异常/零”有人可以帮我找到错误

public static void main(String[] args) {
int num = 6, sum = 0, rem = num;
while (rem != 0) {
rem--;
if (num % rem == 0) {
sum = sum + rem;
}
}
if (sum == num) {
System.out.println("It is a perfect number");
} else {
System.out.println("It is not a perfect number");
}
}

最佳答案

当你调用while (rem != 0)并且如果rem == 1时,递减它将会是0,因此你不能除以。

因此,将 while (rem != 0) 更改为 while (rem > 1) ,它应该可以工作。

<强> Example

关于java - "exception in thread main/by zero"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52779778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com