Advertisement
Spocoman

01. Unique PIN Codes

Aug 30th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.81 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class UniquePINCodes {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int x = Integer.parseInt(scanner.nextLine());
  7.         int y = Integer.parseInt(scanner.nextLine());
  8.         int z = Integer.parseInt(scanner.nextLine());
  9.  
  10.         for (int i = 2; i <= x; i += 2) {
  11.             if (i % 2 == 0) {
  12.                 for (int j = 2; j <= y; j++) {
  13.                     if (j == 2 || j == 3 || j == 5 || j == 7) {
  14.                         for (int k = 2; k <= z; k += 2) {
  15.                             if (k % 2 == 0) {
  16.                                 System.out.println(i + " " + j + " " + k);
  17.                             }
  18.                         }
  19.                     }
  20.                 }
  21.             }
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement