public static void Main()
int[] arr = new int[5] {17,5,9,0,2};
for(int i=0;i<arr.Length;i++)
Console.WriteLine(selection(sel));
Console.WriteLine(bubble(bob));
Console.WriteLine(Insertion(ins));
public static int selection(int [] sel)
for (int i = 0; i < sel.Length - 1; i++)
for (int j = i + 1; j < sel.Length; j++)
public static int bubble(int [] bob)
for (int i = 0; i < bob.Length - 1; i++)
for (int j = i + 1; j < bob.Length; j++)
public static int Insertion(int [] ins)
for (int i = 0; i < ins.Length - 1; i++)
for (int j = i + 1; j < ins.Length; j++)