Advertisement
Spocoman

03. Characters in Range

Jan 26th, 2022
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CharactersInRange
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             char ch1 = char.Parse(Console.ReadLine());
  10.             char ch2 = char.Parse(Console.ReadLine());
  11.             string result = "";
  12.  
  13.             Console.WriteLine(CharactersInRange(ch1, ch2, result));
  14.         }
  15.  
  16.         private static string CharactersInRange(char ch1, char ch2, string result)
  17.         {
  18.             int small = 0;
  19.             int big = 0;
  20.             if (ch1 < ch2)
  21.             {
  22.                 small = ch1;
  23.                 big = ch2;
  24.             }
  25.             else
  26.             {
  27.                 small = ch2;
  28.                 big = ch1;
  29.             }
  30.  
  31.             for (int i = small + 1; i < big; i++)
  32.             {
  33.  
  34.                 result += $"{(char)i} ";
  35.             }
  36.             return result;
  37.         }
  38.     }
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement