import java.util.Scanner; public class Main2 { public static void main(String[] args) { System.out.println("Zadanie: ile jest liczb pierwszych w zakresie od a do b podanym jako parametry"); //ile jest liczb pierwszych w zakresie od a do b podanym jako parametry int x = 0; int n = 0; int n1 = 0; int amount = 0; //liczba liczb pierwszych w zadaniu Scanner scanner = new Scanner(System.in); System.out.println("Podaj liczbę..."); int t = scanner.nextInt(); System.out.println("Podaj liczbę..."); int t1 = scanner.nextInt(); boolean primeNumber = false; n = t; n1 = t1; if (t < t1) { for (n = t; n <= t1; n++) { primeNumber = false; for (x = 1; x < n; x++) { if (x != 1 && x != n && n % x == 0) { primeNumber = true; break; } } if (primeNumber == false) { amount++; } } } System.out.println(amount); } }