fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int[] array = new int[] { 1, 4, 5, 7 };
  8.  
  9. foreach (var n in array)
  10. Console.WriteLine(n);
  11. }
  12. }
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
1
4
5
7