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

来源:5-3 编程练习

慕沐8155685

2019-07-11 09:45

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]);

        }

        }

    }

}


写回答 关注

2回答

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

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

    你没有new一个新数组

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

    我知道了length,L大写

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题