正数n是consecutive-factored
当且仅当它有因子时,i和j在i > 1, j > 1 and j = i +1
。我需要一个returns 1
函数,如果它的参数是连续因子的,那么它是returns 0
。例如,24=2*3*4
和3 = 2+1
所以函数必须{{1}在这种情况下。
我试过这个:
return 1
任何人都可以帮我解决这个问题吗?
答案 0 :(得分:3)
首先检查它是否均匀,然后尝试试用
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的分解算法。
答案 1 :(得分:2)
我用上面的代码解决了我的问题。以下是代码。
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++;
}
}
Object ia[] = al.toArray();
System.out.println("Factors are: " + al);
int LengthOfList = al.size();
if (LengthOfList >= 2) {
int a = ((Integer) ia[0]).intValue();
int b = ((Integer) ia[1]).intValue();
if ((a + 1) == b) {
return 1;
} else {
return 0;
}
} else {
return 0;
}
}
}