黑马程序员技术交流社区

标题: C#动态数组ArrayList的使用 [打印本页]

作者: 班顶超    时间: 2012-5-21 17:47
标题: C#动态数组ArrayList的使用
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
注:首先得要引用using System.Collections
namespace  Text01{
    class Program
    {
        static void Main(string[] args)
        {
            ArrayList arr = new ArrayList();
            string str;
            while (true)
            {
                Console.WriteLine("\n");
                Console.WriteLine("请输入一个字符,结束请输入'end'");
                str = Console.ReaddLine();
                if (str == "end")
                {
                    break;
                }
                else
                {
                    arr.Add(str);
                    Console.WriteLine();
                    for (int i = 0; i < arr.Count; i++)
                    {
                        Console.Write("{0}", arr[i]);
                    }
                }
            }

        }
    }
}


作者: 魏庆君    时间: 2012-5-21 22:45
程序中Console.ReadLine();写的有些问题,多了个d,需要删除了才能够运行




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2