Advertisement
marto9119

Untitled

Mar 5th, 2023
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.14 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace _05._Messages
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int komands = int.Parse(Console.ReadLine());
  10.             string text = "";
  11.             int count = 0;
  12.  
  13.             for (int i = 0; i < komands; i++)
  14.             {
  15.                 int number = int.Parse(Console.ReadLine());
  16.  
  17.                 int symbol = number % 10;
  18.  
  19.                 if (symbol == 0)
  20.                 {
  21.                     text += " ";
  22.                 }
  23.                 else if (symbol == 2)
  24.                 {
  25.                     while (number > 0)
  26.                     {
  27.                         number /= 10;
  28.                         count++;
  29.                     }
  30.                     if (count == 1) { text += "a"; }
  31.                     else if (count == 2) { text += "b"; }
  32.                     else if (count == 3) { text += "c"; }
  33.                     count = 0;
  34.                 }
  35.                 else if (symbol == 3)
  36.                 {
  37.                     while (number > 0)
  38.                     {
  39.                         number /= 10;
  40.                         count++;
  41.                     }
  42.                     if (count == 1) { text += "d"; }
  43.                     else if (count == 2) { text += "e"; }
  44.                     else if (count == 3) { text += "f"; }
  45.                     count = 0;
  46.                 }
  47.                 else if (symbol == 4)
  48.                 {
  49.                     while (number > 0)
  50.                     {
  51.                         number /= 10;
  52.                         count++;
  53.                     }
  54.                     if (count == 1) { text += "g"; }
  55.                     else if (count == 2) { text += "h"; }
  56.                     else if (count == 3) { text += "i"; }
  57.                     count = 0;
  58.                 }
  59.                 else if (symbol == 5)
  60.                 {
  61.                     while (number > 0)
  62.                     {
  63.                         number /= 10;
  64.                         count++;
  65.                     }
  66.                     if (count == 1) { text += "j"; }
  67.                     else if (count == 2) { text += "k"; }
  68.                     else if (count == 3) { text += "l"; }
  69.                     count = 0;
  70.                 }
  71.                 else if (symbol == 6)
  72.                 {
  73.                     while (number > 0)
  74.                     {
  75.                         number /= 10;
  76.                         count++;
  77.                     }
  78.                     if (count == 1) { text += "m"; }
  79.                     else if (count == 2) { text += "n"; }
  80.                     else if (count == 3) { text += "o"; }
  81.                     count = 0;
  82.                 }
  83.                 else if (symbol == 7)
  84.                 {
  85.                     while (number > 0)
  86.                     {
  87.                         number /= 10;
  88.                         count++;
  89.                     }
  90.                     if (count == 1) { text += "p"; }
  91.                     else if (count == 2) { text += "q"; }
  92.                     else if (count == 3) { text += "r"; }
  93.                     else if (count == 4) { text += "s"; }
  94.                     count = 0;
  95.                 }
  96.                 else if (symbol == 8 )
  97.                 {
  98.                     while (number > 0)
  99.                     {
  100.                         number /= 10;
  101.                         count++;
  102.                     }
  103.                     if (count == 1) { text += "t"; }
  104.                     else if (count == 2) { text += "u"; }
  105.                     else if (count == 3) { text += "v"; }
  106.                     count = 0;
  107.                 }
  108.                 else if (symbol == 9)
  109.                 {
  110.                     while (number > 0)
  111.                     {
  112.                         number /= 10;
  113.                         count++;
  114.                     }
  115.                     if (count == 1) { text += "w"; }
  116.                     else if (count == 2) { text += "x"; }
  117.                     else if (count == 3) { text += "y"; }
  118.                     else if (count == 4) { text += "z"; }
  119.                     count = 0;
  120.                 }
  121.             }
  122.             Console.WriteLine(text);
  123.         }
  124.     }
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement