Advertisement
Spocoman

06. Building (solutions with or not ternary operator)

Nov 22nd, 2021 (edited)
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.71 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Building
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int floors = int.Parse(Console.ReadLine());
  10.             int volume = int.Parse(Console.ReadLine());
  11.  
  12.             for (int floor = floors; floor > 0; floor--)
  13.             {
  14.                 char index = ' ';
  15.                 string currentFloor = "";
  16.                 for (int flat = 0; flat < volume; flat++)
  17.                 {
  18.                     if (floors == floor)
  19.                     {
  20.                         index = 'L';
  21.                     }
  22.                     else
  23.                     {
  24.                         if (floor % 2 == 0)
  25.                         {
  26.                             index = 'O';
  27.                         }
  28.                         else
  29.                         {
  30.                             index = 'A';
  31.                         }
  32.                     }
  33.                     currentFloor += $"{ index}{ floor}{ flat} ";
  34.                 }
  35.                 Console.WriteLine(currentFloor);
  36.             }
  37.         }
  38.     }
  39. }
  40.  
  41.  
  42. Решение с тернарен оператор:
  43.  
  44. using System;
  45.  
  46. namespace Building
  47. {
  48.     class Program
  49.     {
  50.         static void Main(string[] args)
  51.         {
  52.             int floors = int.Parse(Console.ReadLine());
  53.             int volume = int.Parse(Console.ReadLine());
  54.  
  55.             for (int floor = floors; floor > 0; floor--)
  56.             {
  57.                 for (int flat = 0; flat < volume; flat++)
  58.                 {
  59.                     Console.Write($"{ (floors == floor ? 'L' : floor % 2 == 0 ? 'O' : 'A')}{ floor}{ flat} ");
  60.                 }
  61.                 Console.WriteLine();
  62.             }
  63.         }
  64.     }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement