Advertisement
elena1234

AsciiSumator

Nov 15th, 2020
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4. namespace AsciiSumator
  5. {
  6.     class MainClass
  7.     {
  8.         public static void Main(string[] args)
  9.         {
  10.             char firstSymbol = char.Parse(Console.ReadLine());
  11.             char secondSymbol = char.Parse(Console.ReadLine());
  12.             string text = Console.ReadLine();
  13.             char startSymbol = text[0];
  14.             char endSymbol = text[0];
  15.             int sum = 0;
  16.  
  17.             if (firstSymbol < secondSymbol)
  18.             {
  19.                  startSymbol = firstSymbol;
  20.                  endSymbol = secondSymbol;
  21.             }
  22.  
  23.             else
  24.             {
  25.                 startSymbol = secondSymbol;
  26.                 endSymbol = firstSymbol;
  27.             }
  28.  
  29.             foreach (var symbol in text)
  30.             {
  31.                 if(symbol>startSymbol && symbol < endSymbol)
  32.                 {
  33.                     sum += symbol;
  34.                 }
  35.             }
  36.  
  37.             Console.WriteLine(sum);
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement