Advertisement
Spocoman

09. Weather Forecast

Nov 15th, 2021 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.03 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Weather
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             string weather = Console.ReadLine();
  10.  
  11.             if (weather == "sunny")
  12.             {
  13.                 Console.WriteLine("It's warm outside!");
  14.             }
  15.             else
  16.             {
  17.                 Console.WriteLine("It's cold outside!");
  18.             }
  19.         }
  20.     }
  21. }
  22.  
  23. Решение с тернарен оператор:
  24.  
  25. using System;
  26.  
  27. namespace Weather
  28. {
  29.     class Program
  30.     {
  31.         static void Main()
  32.         {
  33.             string weather = Console.ReadLine();
  34.  
  35.             string print = weather == "sunny" ? "It's warm outside!" : "It's cold outside!";
  36.  
  37.             Console.WriteLine(print);
  38.         }
  39.     }
  40. }
  41.  
  42. Тарикатско решение:)
  43.  
  44. using System;
  45.  
  46. namespace Weather
  47. {
  48.     class Program
  49.     {
  50.         static void Main()
  51.         {
  52.             Console.WriteLine($"It's {(Console.ReadLine() == "sunny" ? "warm" : "cold")} outside!");
  53.         }
  54.     }
  55. }
  56.  
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement