Mã nguồn: CODE: Select All using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Mang_1_chieu{ class Program { static void nhap(int[] a, int n) { for (int i = 0; i < n; i++) { Console.Write("a[" + i + "]="); a[i] = int.Parse(Console.ReadLine()); } } static void xuat(int[] a, int n) { Console.Write("Hien thi mang:"); for (int i = 0; i < n; i++) Console.Write(a[i] + " "); } static void Main(string[] args) { Console.Write("Nhap so ptu cua mang: "); int n = int.Parse(Console.ReadLine()); int[] a = new int[100]; nhap(a, n); xuat(a, n); Console.ReadKey(); } }}