Spocoman

07. Safe Passwords Generator

Nov 22nd, 2021 (edited)
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.16 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SafePasswordsGenerator
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a = int.Parse(Console.ReadLine());
  10.             int b = int.Parse(Console.ReadLine());
  11.             int passCount = int.Parse(Console.ReadLine());
  12.             int charA = 35;
  13.             int charB = 64;
  14.             for (int j = 1; j <= a; j++)
  15.             {
  16.                 for (int x = 1; x <= b; x++)
  17.                 {
  18.                     if (charA == 56)
  19.                     {
  20.                         charA = 35;
  21.                     }
  22.                     if (charB == 97)
  23.                     {
  24.                         charB = 64;
  25.                     }
  26.                     Console.Write($"{(char)charA}{(char)charB}{j}{x}{(char)charB}{(char)charA}|");
  27.                     passCount--;
  28.                     charA++;
  29.                     charB++;
  30.  
  31.                     if (passCount == 0)
  32.                     {
  33.                         break;
  34.                     }
  35.                 }
  36.                 if (passCount == 0)
  37.                 {
  38.                     break;
  39.                 }
  40.             }
  41.         }
  42.     }
  43. }
  44.  
Add Comment
Please, Sign In to add comment