Advertisement
Spocoman

Password Generator

Dec 12th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.48 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PasswordGenerator
  4. {
  5.     class Program
  6.     {
  7.         public static void Main()
  8.         {
  9.             int a = int.Parse(Console.ReadLine());
  10.             char b = char.Parse(Console.ReadLine());
  11.             char c = char.Parse(Console.ReadLine());
  12.             int d = int.Parse(Console.ReadLine());
  13.             int e = int.Parse(Console.ReadLine());
  14.             int f = int.Parse(Console.ReadLine());
  15.             decimal counter = decimal.Parse(Console.ReadLine());
  16.  
  17.             for (int i = 1; i <= a; i++)
  18.             {
  19.                 for (char j = 'A'; j <= b; j++)
  20.                 {
  21.                     for (char k = 'a'; k <= c; k++)
  22.                     {
  23.                         for (int l = 1; l <= d; l++)
  24.                         {
  25.                             for (int m = 1; m <= e; m++)
  26.                             {
  27.                                 for (int n = 1; n <= f; n++)
  28.                                 {
  29.                                     if (--counter == 0)
  30.                                     {
  31.                                         Console.WriteLine($"{ i}{ j}{ k}{ l}{ m}{ n}");
  32.                                         Environment.Exit(0);
  33.                                     }
  34.                                 }
  35.                             }
  36.                         }
  37.                     }
  38.                 }
  39.             }
  40.             Console.WriteLine("No password on this position");
  41.         }
  42.     }
  43. }
  44.  
  45.        
  46.    
  47.  
  48.  
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement