I want to print the divisors of a user input value between 1 and 10000.
import java.util.Scanner;
public class Divisors {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int Range;
int Divisor;
while(true) {
System.out.print("Please insert a number between 1 and 10000: ");
Range = scan.nextInt();
if (Range < 1 || Range > 10000)
System.out.println("Wrong choice");
else
break;
}
Divisor = 0; // Start counting Divisor from Zero
for (int loop = 1; loop <= Range; loop++) {
if (Range % loop == 0)
Divisor++;
System.out.println("loop);
}
System.out.println("Total number of divisors of " + Range + " is " + Divisor);
}
}
I have problem here with command System.out.println("loop);. I want to print all the divisors, like if a user inserted 10, then the output should show something like:
!
Please insert a number between 1 and 10000: 10
1
2
5
10
Total number of divisors of 10 is 4
! !
But the current output is:
!
Please insert a number between 1 and 10000: 10
1
2
3
4
5
6
7
8
9
10
Total number of divisors of 10 is 4
! !
so how to print loop only when the (Range % loop == 0) is true??
Aucun commentaire:
Enregistrer un commentaire