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

Thảo luận trong 'Visual C#' bắt đầu bởi Trần Văn Cường, 11/10/16.

  1. Trần Văn Cường

    Trần Văn Cường I love CNTT Thành viên BQT Thành viên BQT

    Tham gia ngày:
    8/11/15
    Bài viết:
    3,693
    Đã được thích:
    43
    Điểm thành tích:
    48
    Giới tính:
    Nam
    Nghề nghiệp:
    Sinh Viên
    Nơi ở:
    Quảng Ninh thân yêu!
    Web:

    nhap-vao-mot-mang.gif

    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[] aint n)
            {
                for (
    int i 0ni++)
                {
                    
    Console.Write("a[" "]=");
                    
    a[i] = int.Parse(Console.ReadLine());
                }
            }
            static 
    void xuat(int[] aint n)
            {
                
    Console.Write("Hien thi mang:");
                for (
    int i 0ni++)
                    
    Console.Write(a[i] + " ");
            }

            static 
    void Main(string[] args)
            {
                
    Console.Write("Nhap so ptu cua mang: ");
                
    int n int.Parse(Console.ReadLine());
                
    int[] = new int[100];
                
    nhap(an);
                
    xuat(an);

                
    Console.ReadKey();
            }
        }
    }
     

    Bình Luận Bằng Facebook

    data-href="https://cnttqn.com/threads/c-console-nhap-xuat-mang-1-chieu-trong-c.2921.html"