This site works best with JavaScript enabled!

Example program (Java): prime numbers from... to...

<< previous page


This program outputs all the prime numbers in any area.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import java.util.Scanner;
import java.io.*;
class Testprogram {

public static void main(String [] args) {

	long eingabe1, eingabe2, Testteiler, Teileranzahl;
	System.out.println("Please enter two numbers, in which area all the prime numbers should be listed!");
	Scanner eingabe = new Scanner(System.in);
	System.out.println("");
	System.out.print("From: ");
	eingabe1 = Long.valueOf(eingabe.next());
	System.out.print("To: ");
	eingabe2 = Long.valueOf(eingabe.next());
	System.out.println(" ");
	do {
	
		Teileranzahl = 0;
		for(Testteiler = 1; Testteiler <= eingabe1; Testteiler = Testteiler + 1) {
		
			if(eingabe1%Testteiler == 0) Teileranzahl++;
			
		}
		if(Teileranzahl == 2) System.out.println(eingabe1);
		eingabe1++;
	
	} while(eingabe1 != eingabe2 + 1);

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