问答详情
源自:5-3 编程练习

为什么每次都提醒我了string[]长度没有被定义,这哪里错了!我好气

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

           string[] names={"关羽","张飞","赵云","马超","黄忠"};

           for(int i=0; i< names.length; i++)//请在这里完善代码

        {

           Console.Write(names[i]);

        }

        }

    }

}


提问者:慕沐8155685 2019-07-11 09:45

个回答

  • 慕尼黑5582645
    2020-06-16 09:37:59

    string[] names=new string[]{"关羽","张飞","赵云","马超","黄忠"};

    你没有new一个新数组

  • 慕沐8155685
    2019-07-11 10:13:15

    我知道了length,L大写