Spocoman

06. Wedding Seats

Nov 22nd, 2021 (edited)
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.96 KB | None | 0 0
  1. using System;
  2.  
  3. namespace WeddingSeats
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             char finalSector = char.Parse(Console.ReadLine());
  10.             int rows = int.Parse(Console.ReadLine());
  11.             int oddSeats = int.Parse(Console.ReadLine());
  12.             int totalSeats = 0;
  13.  
  14.             for (char i = 'A'; i <= finalSector; i++)
  15.             {
  16.                 for (int k = 1; k <= rows; k++)
  17.                 {
  18.                     int currentSeats = oddSeats;
  19.                     if (k % 2 == 0)
  20.                     {
  21.                         currentSeats += 2;
  22.                     }
  23.                     for (char o = 'a'; o < currentSeats + 97 ; o++)
  24.                     {
  25.                         Console.WriteLine($"{i}{k}{o}");
  26.                         totalSeats++;
  27.                     }
  28.                 }
  29.                 rows++;
  30.             }
  31.             Console.WriteLine(totalSeats);
  32.         }
  33.     }
  34. }
  35.  
Add Comment
Please, Sign In to add comment