Advertisement
elena1234

CharacterMultiplier*

Nov 13th, 2020 (edited)
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.19 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4. namespace CharacterMultiplier
  5. {
  6.     class MainClass
  7.     {
  8.         public static void Main(string[] args)
  9.         {
  10.             string[] words = Console.ReadLine().Split();
  11.             int sum=ReturnSum(words);
  12.             Console.WriteLine(sum);
  13.         }
  14.  
  15.  
  16.         private static int ReturnSum(string[] words)
  17.         {
  18.             string shorterString = string.Empty;
  19.             string longerString = string.Empty;
  20.             int sum = 0;
  21.             int minLength = Math.Min(words[0].Length, words[1].Length);
  22.             if (minLength == words[0].Length)
  23.             {
  24.                 shorterString = words[0];
  25.                 longerString = words[1];
  26.             }
  27.  
  28.             else
  29.             {
  30.                 shorterString = words[1];
  31.                 longerString = words[0];
  32.             }
  33.  
  34.             for (int i = 0; i < shorterString.Length; i++)
  35.             {
  36.                 sum += shorterString[i] * longerString[i];
  37.             }
  38.  
  39.             for (int i = shorterString.Length; i < longerString.Length; i++)
  40.             {
  41.                 sum += longerString[i];
  42.             }
  43.  
  44.             return sum;
  45.         }
  46.       }
  47.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement