[dotNET - C#] Nhập vào một mảng số nguyên rồi sắp xếp mảng Phần mềm: Visual CODE: Select All using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace mang{ class Program { static void Main(string[] args) { { Console.Write("Moi Ban Nhap vao N ="); int n = Convert.ToInt32(Console.ReadLine()); int[] mang = new int[n]; for (int i = 0; i < n; i++) { Console.Write("Moi ban nhap vao phan tu thu {0}: ", i + 1); mang[i] = Convert.ToInt32(Console.ReadLine()); } for (int i = 0; i < n - 1; i++) for (int j = i + 1; j < n; j++) if (mang[j] < mang[i]) { int tg = mang[i]; mang[i] = mang[j]; mang[j] = tg; } Console.WriteLine("mang sau khi da sap xep"); for (int i = 0; i < n; i++) { Console.Write(mang[i]); Console.Write(" "); } } Console.ReadLine(); } }}