Advertisement
Spocoman

09. Chars to String

Jan 16th, 2022
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.99 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CharsToString
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             char one = char.Parse(Console.ReadLine());
  10.             char two = char.Parse(Console.ReadLine());
  11.             char three = char.Parse(Console.ReadLine());
  12.            
  13.             Console.WriteLine($"{one}{two}{three}");
  14.         }
  15.     }
  16. }
  17.  
  18.  
  19. Или:
  20.  
  21. using System;
  22.  
  23. namespace CharsToString
  24. {
  25.     class Program
  26.     {
  27.         static void Main(string[] args)
  28.         {
  29.             string one = Console.ReadLine();
  30.             string two = Console.ReadLine();
  31.             string three = Console.ReadLine();
  32.  
  33.             Console.WriteLine($"{one}{two}{three} ");
  34.         }
  35.     }
  36. }
  37.  
  38. Или тарикатския начин:)
  39.  
  40. using System;
  41.  
  42. namespace CharsToString
  43. {
  44.     class Program
  45.     {
  46.         static void Main()
  47.         {
  48.             Console.WriteLine(Console.ReadLine() + Console.ReadLine() + Console.ReadLine());
  49.         }
  50.     }
  51. }
  52.  
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement