Advertisement
Spocoman

Ticket Combination

Sep 29th, 2023 (edited)
859
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TicketCombination
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.  
  11.             for (char a = 'B'; a <= 'L'; a += 2)
  12.             {
  13.                 for (char b = 'f'; b >= 'a'; b--)
  14.                 {
  15.                     for (char c = 'A'; c <= 'C'; c++)
  16.                     {
  17.                         for (int d = 1; d <= 10; d++)
  18.                         {
  19.                             for (int e = 10; e > 0; e--)
  20.                             {
  21.                                 if (--n == 0)
  22.                                 {
  23.                                     Console.WriteLine($"Ticket combination: {a}{b}{c}{d}{e}");
  24.                                     Console.WriteLine($"Prize: {a + b + c + d + e} lv.");
  25.                                     Environment.Exit(0);
  26.                                 }
  27.                             }
  28.                         }
  29.                     }
  30.                 }
  31.             }
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement