Advertisement
Spocoman

Bank Number Generator

Sep 25th, 2023
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.38 KB | None | 0 0
  1. using System;
  2.  
  3. namespace BankNumberGenerator
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a = int.Parse(Console.ReadLine());
  10.             char b = char.Parse(Console.ReadLine());
  11.             char c = char.Parse(Console.ReadLine());
  12.             char d = char.Parse(Console.ReadLine());
  13.             int e = int.Parse(Console.ReadLine());
  14.             int n = int.Parse(Console.ReadLine());
  15.  
  16.             for (int i = a; i <= 99; i++)
  17.             {
  18.                 for (char j = b; j <= 'Z'; j++)
  19.                 {
  20.                     for (char k = c; k <= 'z'; k++)
  21.                     {
  22.                         for (char l = d; l <= 'Z'; l++)
  23.                         {
  24.                             for (int m = e; m >= 10; m--)
  25.                             {
  26.                                 if (i % 10 == 2 && m % 10 == 5)
  27.                                 {
  28.                                     n--;
  29.                                     if (n == 0)
  30.                                     {
  31.                                         Console.WriteLine($"{i}{j}{k}{l}{m}");
  32.                                         Environment.Exit(0);
  33.                                     }
  34.                                 }
  35.                             }
  36.                         }
  37.                     }
  38.                 }
  39.             }
  40.         }
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement