Advertisement
Spocoman

10. Lower or Upper

Jan 16th, 2022
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 KB | None | 0 0
  1. using System;
  2.  
  3. namespace LowerOrUpper
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int x = char.Parse(Console.ReadLine());
  10.            
  11.             if (x > 64 && x < 91 )
  12.             {
  13.                 Console.WriteLine("upper-case");
  14.             }
  15.             else if (x > 96 && x < 123)
  16.             {
  17.                 Console.WriteLine("lower-case");
  18.             }
  19.         }
  20.     }
  21. }
  22.  
  23.  
  24. Решение с тернарен оператор:
  25.  
  26. using System;
  27.  
  28. namespace LowerOrUpper
  29. {
  30.     class Program
  31.     {
  32.         static void Main()
  33.         {
  34.             Console.WriteLine(char.Parse(Console.ReadLine()) < 91? "upper-case": "lower-case");
  35.         }
  36.     }
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement