Nhập xuất mảng 1 chiều trong C#



namespace Mang1ChieuTrongCsharp
{
    class Program
    {
        static void Main(string[] args)
        {
            //Khai bao mang
            int[] mang=new int[100];
            int so;
            Console.Write("Ban muon nhap bao nhieu so:");
            so = int.Parse(Console.ReadLine());
            //Nhap gia tri cho mang
            for (int i = 0; i < so; i++)//Phan tu dau tien bat dau =0
            {
                Console.Write("Nhap so thu {0}:",i);
                mang[i] = int.Parse(Console.ReadLine());
            }
            //Xuat gia tri da nhap
            for (int i = 0; i < so; i++)//Phan tu dau tien bat dau =0
            {
                Console.WriteLine("Gia tri phan tu thu {0} la: {1}", i,mang[i]);
            }
            Console.ReadLine();
        }
    }
}
Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 nhận xét:

Đăng nhận xét