数组

using System;
using System.Collections.Generic;
using System.Text;

namespace 数组
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] arr = new int[] { 1,1,1,3,9, 2, 3, 9, 9, 87 };
            foreach (int a in arr)
            {
               
                    Console.WriteLine(a);
              
               
            }
            Console.Read();

        }
    }
}

posted on 2009-11-20 21:30  记住昨天,迎接明天  阅读(98)  评论(0编辑  收藏  举报