gpt4 book ai didi

java - boolean 返回问题/从放入数组的方法中获取因素

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

一小时前发布了一个较早的问题,并在 4 分钟内得到了回复,这太疯狂了,我再试试我的运气。程序有 5 个方法,我目前正在制作所有这些方法,因此它们不会全部都在这里(由于之前的响应而将其放入),现在的问题是让我的最后一个方法之一实际上除了使打印语句正常工作之外还执行其他操作。该方法并不完整,它不仅需要找到该数字的因子,还必须将它们存储在数组中,将它们相加,然后确定该数字是否完美。未显示的最后一个方法将打印出每个数字的实际数组(如果有)。 “testperfect”是我遇到问题的方法,在 Eclipse 中我收到一条错误消息,指出此方法必须返回 boolean 类型的结果。 。 。任何形式的帮助将不胜感激

import java.util.Scanner;

public class tgore_perfect
{
private static int count;
private static int perfect;
public static void main ( String args [])
{
count = getNum ();
//System.out.print(count);
boolean check = validateNum();
//System.out.print(check);
while (validateNum() == false)
{
System.out.print ("Non-positive numbers are not allowed.\n");
count = getNum();
}
if (validateNum() == true)
{
for ( int i = 0; i < count; i++ )
{
perfect = getPerfect();
testPerfect();

}
}
}



public static int getNum () //gets amount of numbers to process
{
Scanner input = new Scanner ( System.in );
int counter;

System.out.println ("How many numbers would you like to test? ");
counter = input.nextInt();
return counter;
}

private static boolean validateNum() //checks user input
{
if (count <= 0)
{
return false;
}
else
{
return true;
}
}

public static int getPerfect() //gets number to process
{
Scanner input = new Scanner ( System.in);
perfect = -1;
System.out.print ("Please enter a possible perfect number: ");
return perfect = input.nextInt();
}

public static boolean testPerfect() //tests the number to see if is perfect
{
int sum = 0;
int x = 0;

for( int i = 1; i < perfect; i++ )
{
if((perfect % i ) == 0 )
{
x = i;
sum += x;

}
if( x == perfect)
{
return true;
}
else
{
return false;
}
}
}
}

最佳答案

所有代码路径都必须返回您的返回类型

想象一下,如果您的 for 循环由于 iperfect 的值而根本没有执行,在这种情况下,您的函数将不会返回任何内容。

这是不允许的。

public static boolean testPerfect() //tests the number to see if is perfect
{
//...code...
for( int i = 1; i < perfect; i++ )
{
//..code..
}
return false;
}

关于java - boolean 返回问题/从放入数组的方法中获取因素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13397779/

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