Pietras286

Tablica

Dec 13th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Problem25
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string[] tab = Console.ReadLine().Split(' ');
  10.             for (int i = tab.Length - 1; i >= 0; i--)
  11.             {
  12.                 Console.WriteLine(tab[i] + " ");
  13.             }
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment