Advertisement
Spocoman

Password Generator

Sep 21st, 2023
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.85 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.     int a;
  8.     cin >> a;
  9.  
  10.     char b, c;
  11.     cin >> b >> c;
  12.  
  13.     int d, e, f, counter;
  14.     cin >> d >> e >> f >> counter;
  15.  
  16.     for (int i = 1; i <= a; i++) {
  17.         for (char j = 'A'; j <= b; j++) {
  18.             for (char k = 'a'; k <= c; k++) {
  19.                 for (int l = 1; l <= d; l++) {
  20.                     for (int m = 1; m <= e; m++) {
  21.                         for (int n = 1; n <= f; n++) {
  22.                             if (--counter == 0) {
  23.                                 cout << i << j << k << l << m << n << endl;
  24.                                 return 0;
  25.                             }
  26.                         }
  27.                     }
  28.                 }
  29.             }
  30.         }
  31.     }
  32.  
  33.     cout << "No password on this position" << endl;
  34.     return 0;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement