请问那个大佬,帮我看看哪出了问题,谢谢!

来源:5-3 编程练习

慕无忌7238374

2020-03-29 19:57

namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

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

           for(int i=0;i<names.Length;i++;)

           {

               Console.Write(names[i]+",");

            }

           //请在这里完善代码

        }

    }

}


写回答 关注

2回答

  • 慕桂英6068768
    2021-05-08 15:00:50

    需要用 new 分配内存

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

  • 慕桂英9564814
    2020-03-30 00:09:07

    i++;)  i++后面不需要分号

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题