Advertisement
Spocoman

Password Generator

Sep 8th, 2024
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.25 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int a = Integer.parseInt(scanner.nextLine());
  7.         char b = scanner.nextLine().charAt(0),
  8.                 c = scanner.nextLine().charAt(0);
  9.  
  10.         int d = Integer.parseInt(scanner.nextLine()),
  11.                 e = Integer.parseInt(scanner.nextLine()),
  12.                 f = Integer.parseInt(scanner.nextLine()),
  13.                 counter = Integer.parseInt(scanner.next());
  14.  
  15.         for (int i = 1; i <= a; i++) {
  16.             for (char j = 'A'; j <= b; j++) {
  17.                 for (char k = 'a'; k <= c; k++) {
  18.                     for (int l = 1; l <= d; l++) {
  19.                         for (int m = 1; m <= e; m++) {
  20.                             for (int n = 1; n <= f; n++) {
  21.                                 if (--counter == 0) {
  22.                                     System.out.printf("%d%c%c%d%d%d\n", i, j, k, l, m, n);
  23.                                     System.exit(0);
  24.                                 }
  25.                             }
  26.                         }
  27.                     }
  28.                 }
  29.             }
  30.         }
  31.  
  32.         System.out.println("No password on this position");
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement