Can this be cleaned up?
using System; class AscendingBubbleSort { public static void Main() { int i = 0,j = 0,t = 0; int []c=
I think your algorithm in ok, but I would put the sort functionality in a seperate class and method.