Spocoman

Movie Tickets

Nov 28th, 2021 (edited)
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MovieTickets
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a1 = int.Parse(Console.ReadLine());
  10.             int a2 = int.Parse(Console.ReadLine());
  11.             int n = int.Parse(Console.ReadLine());
  12.  
  13.             for (int i = a1; i < a2; i++)
  14.             {
  15.                 for (int x = 1; x < n; x++)
  16.                 {
  17.                     for (int y = 1; y < n / 2; y++)
  18.                     {
  19.                         if (i % 2 == 1 && (i + x + y) % 2 == 1)
  20.                         {
  21.                             Console.WriteLine($"{(char)i}-{x}{y}{i}");
  22.                         }
  23.                     }
  24.                 }    
  25.             }
  26.         }
  27.     }
  28. }
  29.  
Add Comment
Please, Sign In to add comment