Spocoman

The Most Powerful Word

Nov 24th, 2021 (edited)
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.21 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TheMostPowerfulWord
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string word = Console.ReadLine();
  10.             string strong = "";
  11.             double total = 0;
  12.  
  13.             while (word != "End of words")
  14.             {
  15.                 double sum = 0;
  16.  
  17.                 for (int i = 0; i <= word.Length - 1; i++)
  18.                 {
  19.                     sum += word[i];
  20.                 }
  21.  
  22.                 switch (word[0].ToLower())
  23.                 {
  24.                     case 'a':
  25.                     case 'e':
  26.                     case 'i':
  27.                     case 'o':
  28.                     case 'u':
  29.                     case 'y':
  30.                         sum *= word.Length;
  31.                         break;
  32.  
  33.                     default:
  34.                         sum /= word.Length;
  35.                         break;
  36.                 }
  37.  
  38.                 if (sum > total)
  39.                 {
  40.                     strong = word;
  41.                     total = sum;
  42.                 }
  43.                 word = Console.ReadLine();
  44.             }
  45.             Console.WriteLine($"The most powerful word is {strong} - {Math.Floor(total)}");
  46.         }
  47.     }
  48. }
  49.  
Add Comment
Please, Sign In to add comment