Spocoman

14. Password Generator

Nov 23rd, 2021 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.93 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PasswordGenerator
  4.  
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int n = int.Parse(Console.ReadLine());
  11.             int l = int.Parse(Console.ReadLine());
  12.  
  13.             for (int a = 1; a <= n; a++)
  14.             {
  15.                 for (int b = 1; b <= n; b++)
  16.                 {
  17.                     for (int c = 97; c < 97 + l; c++)
  18.                     {
  19.                         for (int d = 97; d < 97 + l; d++)
  20.                         {
  21.                             for (int e = 1; e <= n; e++)
  22.                             {
  23.                                 if (a < e && e > b)
  24.                                 {
  25.                                     Console.Write($"{a}{b}{(char)(c)}{(char)(d)}{e} ");
  26.                                 }
  27.                             }
  28.                         }
  29.                     }
  30.                 }
  31.             }
  32.         }
  33.     }
  34. }
Add Comment
Please, Sign In to add comment