int[] tuple={5,14,32,2,15,20}; Array.Sort(tuple);//排序 for(int i = 0 ; i < tuple.length; i++) { Console.Wrilte(tuple[0].ToString().PadRight(2,'0')); }