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