fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int[] a = { 1, 2, 3, 4, 5, 6, 7, 8 };
  8. Array.Reverse(a, 0, 4);
  9. Console.WriteLine(String.Join(" ", a));
  10. }
  11. }
Success #stdin #stdout 0.02s 24940KB
stdin
Standard input is empty
stdout
4 3 2 1 5 6 7 8