Advertisement
SensaBG

13. Prime Pairs

Aug 4th, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1.  
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6. public static void main(String[] args) {
  7. Scanner scanner = new Scanner(System.in);
  8.  
  9. // първата и втората двойка цифри образуват двуцифрени прости числа
  10. // Крайната стойност до която трябва да се генерират двойките се определя от други 2 цифри, подадени като вход, които определят с колко крайната стойност е по-голяма от началната.
  11.  
  12. int firstPair = Integer.parseInt(scanner.nextLine());
  13. int secondPair = Integer.parseInt(scanner.nextLine());
  14. int firstPairMax = Integer.parseInt(scanner.nextLine());
  15. int secondPairMax = Integer.parseInt(scanner.nextLine());
  16.  
  17. int firstPairRange = firstPair + firstPairMax;
  18. int secondPairRange = secondPair + secondPairMax;
  19.  
  20. for (int i = firstPair; i <= firstPairRange; i++) {
  21. for (int j = secondPair; j <= secondPairRange; j++) {
  22.  
  23. if (i % 2 != 0 && i % 3 != 0 && i % 5 != 0 && i % 7 != 0
  24. && j % 2 != 0 && j % 3 != 0 && j % 5 != 0 && j % 7 != 0)
  25.  
  26. System.out.println(i + "" + j);
  27. }
  28. }
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement