Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- // първата и втората двойка цифри образуват двуцифрени прости числа
- // Крайната стойност до която трябва да се генерират двойките се определя от други 2 цифри, подадени като вход, които определят с колко крайната стойност е по-голяма от началната.
- int firstPair = Integer.parseInt(scanner.nextLine());
- int secondPair = Integer.parseInt(scanner.nextLine());
- int firstPairMax = Integer.parseInt(scanner.nextLine());
- int secondPairMax = Integer.parseInt(scanner.nextLine());
- int firstPairRange = firstPair + firstPairMax;
- int secondPairRange = secondPair + secondPairMax;
- for (int i = firstPair; i <= firstPairRange; i++) {
- for (int j = secondPair; j <= secondPairRange; j++) {
- if (i % 2 != 0 && i % 3 != 0 && i % 5 != 0 && i % 7 != 0
- && j % 2 != 0 && j % 3 != 0 && j % 5 != 0 && j % 7 != 0)
- System.out.println(i + "" + j);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement