using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace buble_sort { class Program { static void Main(string[] args) { int n; Console.Write("MASUKAN JUMLAH INDEKS : "); n = int.Parse(Console.ReadLine()); int[] bil = new int[n]; for (int i = 0; i < bil.Length; i++) { Console.Write("index ke {0} : ", i + 1); bil[i] = int.Parse(Console.ReadLine()); } Console.WriteLine("1....