Advertisement
-AlexSesorov-

Александр Сесоров, 1.3.9.2

Aug 22nd, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. class Program
  2.     {
  3.         static void Main(string[] args)
  4.         {
  5.             string[] input = Console.ReadLine().Split(' ');
  6.             int i = 1;
  7.  
  8.             foreach (string n in input)
  9.             {
  10.                 Console.WriteLine("Элемент {0}: {1}",i,n);
  11.                 i++;
  12.             }
  13.         }
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement