Guest User

Untitled

a guest
Jun 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace ConsoleApplication1
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int[] numbers = { 4, 3, 8, 0, 5 };
  12.  
  13.             foreach (int i in numbers)
  14.                 Console.WriteLine(i);
  15.  
  16.             Console.ReadLine();
  17.         }
  18.     }
  19. }
Add Comment
Please, Sign In to add comment