gpt4 book ai didi

java - 如何使这个输出成为 boolean 值?

转载 作者:行者123 更新时间:2023-12-01 11:37:13 26 4
gpt4 key购买 nike

这是我的代码,我希望输出如下:

给定两个数字,第二个输入是第一个输入的倍数吗?

例如:

输入:

3

6

输出:

true

public boolean multiple(int m, int n){

int i = 0;
int j = 0;

boolean check = true;
if(n%m == 0){
i++;
return check;
}
else{
j++;
return false;
}
}

当我尝试时,出现错误,我认为这是因为 return 语句位于 if 和 else 语句内。

最佳答案

代码完全没问题..错误一定是在其他地方

public class Test1 {
public static void main(String[] args) {
System.out.println(multiple(3, 9));

}
public static boolean multiple(int m, int n){

int i = 0;
int j = 0;

boolean check = true;
if(n%m == 0){
i++;
return check;
}
else{
j++;
return false;
}
}
}

输出

这里是输出,请参阅 IDEONE

关于java - 如何使这个输出成为 boolean 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29853919/

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