Advertisement
Spocoman

01. Encrypt, Sort and Print Array

Jan 23rd, 2022 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.03 KB | None | 0 0
  1. using System;
  2.  
  3. namespace EncryptSortAndPrintArray
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.             int[] output = new int[num];
  11.  
  12.             for (int i = 0; i < num; i++)
  13.             {
  14.                 char[] name = Console.ReadLine().ToCharArray();
  15.  
  16.                 for (int j = 0; j < name.Length; j++)
  17.                 {
  18.                     switch (name[j])
  19.                     {
  20.                         case 'a':
  21.                         case 'e':
  22.                         case 'i':
  23.                         case 'o':
  24.                         case 'u':
  25.                         case 'A':
  26.                         case 'E':
  27.                         case 'I':
  28.                         case 'O':
  29.                         case 'U':
  30.                             output[i] += name[j] * name.Length;
  31.                             break;
  32.                         default:
  33.                             output[i] += name[j] / name.Length;
  34.                             break;
  35.                     }
  36.                 }
  37.             }
  38.             Array.Sort(output);
  39.  
  40.             foreach (var item in output)
  41.             {
  42.                 Console.WriteLine(item);
  43.             }
  44.         }
  45.     }
  46. }
  47.  
  48.  
  49. Решение с тернарен оператор:
  50.  
  51. using System;
  52.  
  53. namespace EncryptSortAndPrintArray
  54. {
  55.     class Program
  56.     {
  57.         static void Main(string[] args)
  58.         {
  59.             int num = int.Parse(Console.ReadLine());
  60.             int[] output = new int[num];
  61.  
  62.             for (int i = 0; i < num; i++)
  63.             {
  64.                 char[] name = Console.ReadLine().ToCharArray();
  65.  
  66.                 for (int j = 0; j < name.Length; j++)
  67.                 {
  68.                     output[i] += "aeiouAEIOU".Contains(name[j]) ? name[j] * name.Length : name[j] / name.Length;                
  69.                 }
  70.             }
  71.             Array.Sort(output);
  72.  
  73.             Console.WriteLine(string.Join("\n", output));
  74.         }
  75.     }
  76. }
  77.  
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement