Advertisement
Spocoman

Stupid Password Generator

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