Advertisement
dragonbs

Building

Oct 23rd, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.08 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _06.Building
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int floors = int.Parse(Console.ReadLine());
  10.             int rooms = int.Parse(Console.ReadLine());
  11.  
  12.             for (int currentFloor = floors; currentFloor >= 1; currentFloor--)
  13.             {
  14.                 for (int currentRoom = 0; currentRoom < rooms; currentRoom++)
  15.                 {
  16.                    
  17.                     if (currentFloor == floors)
  18.                     {
  19.                         Console.Write($"L{currentFloor}{currentRoom} ");
  20.                     }
  21.                    
  22.                     else if (currentFloor % 2 == 0)
  23.                     {
  24.                         Console.Write($"O{currentFloor}{currentRoom} ");
  25.                     }
  26.                    
  27.                     else
  28.                     {
  29.                         Console.Write($"A{currentFloor}{currentRoom} ");
  30.                     }
  31.                 }
  32.                
  33.                 Console.WriteLine();
  34.             }
  35.         }
  36.     }
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement