Advertisement
Spocoman

06. Reversed Chars

Jan 16th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ReversedChars
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             char in1 = char.Parse(Console.ReadLine());
  10.             char in2 = char.Parse(Console.ReadLine());
  11.             char in3 = char.Parse(Console.ReadLine());
  12.            
  13.             Console.WriteLine($"{in3} {in2} {in1}");
  14.         }
  15.     }
  16. }
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement