gpt4 book ai didi

java - 连续因素测试

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:34:10 26 4
gpt4 key购买 nike

正数 n 是连续因子当且仅当它有因数 i 和 j 其中 i > 1, j > 1 and j = i +1 .我需要一个函数,如果它的参数是连续分解的,它返回 1,否则它返回 0。例如,24=2*3*43 = 2+1 所以它的函数必须在这种情况下返回 1

我试过这个:

public class ConsecutiveFactor {

public static void main(String[] args) {
// TODO code application logic here

Scanner myscan = new Scanner(System.in);
System.out.print("Please enter a number: ");
int num = myscan.nextInt();
int res = isConsecutiveFactored(num);
System.out.println("Result: " + res);

}
static int isConsecutiveFactored(int number) {
ArrayList al = new ArrayList();
for (int i = 2; i <= number; i++) {
int j = 0;
int temp;
temp = number %i;

if (temp != 0) {
continue;
}

else {

al.add(i);
number = number / i;
j++;

}
}


System.out.println("Factors are: " + al);
int LengthOfList = al.size();
if (LengthOfList >= 2) {
int a =al(0);
int b = al(1);
if ((a + 1) == b) {
return 1;
} else {
return 0;
}
} else {
return 0;
}

}
}

谁能帮我解决这个问题?

最佳答案

先看是否偶数,再试分法

if(n%2!=0) return 0;
for(i=2;i<sqrt(n);++i) {
int div=i*(i+1);
if( n % div ==0) { return 1; }
}
return 0;

非常低效,但对于小数量来说还不错。除此之外,尝试来自 http://en.wikipedia.org/wiki/Prime_factorization 的因式分解算法.

关于java - 连续因素测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13467279/

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