Sorry to ask such a basic question but other questions on here don't seem to fix the problem and I've been staring at it for quite a while now. I'm writing some code to find the smallest common multiple for the numbers from 1 to 20. From debugging, the outer for loop only runs once and I can't figure out why. Can someone please point out where I've gone code blind.
public class ED5 {
public static void main(String[] args){
int smallestCommonMultiple = 1;
//excluding 1 because it has no effect on the result and would just mean extra work
int[] numbers = {2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
//initially set to true for the first loop
boolean iIsFactor = true;
//for each potential divisor from 2-20 (note only the prime divisors will ever cause a division)
for(int i = 2; i < 21; i++){
while(iIsFactor){
//reset flag for the start of each new run through the array
iIsFactor = false;
//for each element of the array
for(int j=0; j<19; j++){
//if the current divisor is a factor of that array entry
if(numbers[j]% i == 0){
//divide the current entry by the current divisor
numbers[j] = numbers[j]/i;
//indicate that at least one entry had a factor of i
iIsFactor= true;
}
}//end for loop for each array pass
if(iIsFactor){
smallestCommonMultiple *= i;
}
}//end while loop for the divisor
}//end for loop for all the divisors
//output result
System.out.println("The smallest common multiple of the numbers from 1 to 20 is:");
System.out.println(smallestCommonMultiple);
}
}
Sysoutprints only once...for(int i = 2; i < 21; i++)? That definitely loops 19 times.for, outside thewhileloop, and it prints for every value ofifrom 2 through 20. Thewhileloops does no iterations for values ofiother than 2. That could be what you are seeing.