This site works best with JavaScript enabled!

Example program (Java): All factors of a number

<< previous page


This program displays all the dividers of a number.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import java.util.Scanner;
import java.io.*;
class Testprogram {

public static void main(String[] args) {

	long eingabe1, Testteiler, Teileranzahl;
	Teileranzahl = 0;
	System.out.println("Please enter a number, of which all the dividers should be determined!");
	Scanner eingabe = new Scanner(System.in);
	eingabe1 = Long.valueOf(eingabe.next());
	for(Testteiler = 1; Testteiler <= eingabe1; Testteiler++) {
	
		if(eingabe1%Testteiler == 0) {
		
			System.out.println(Testteiler);
			Teileranzahl++;
		
		}
	
	}
	System.out.println("The number " + eingabe1 + " has " + Teileranzahl + " dividers.");

}
<< previous page
Share this page
Posted on 17.10.2011 | Last modified on 20.11.2016