Advertisement
martinvalchev

Reversed_chars

Jan 31st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Reversed_chars
  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.             one.ToString();
  14.             two.ToString();
  15.             three.ToString();
  16.  
  17.             Console.WriteLine($"{three}{two}{one}");
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement