代码哪里有问题

来源:5-3 编程练习

慕函数9020424

2018-08-10 16:49

using System;

using System.Collections.Generic;

using System.Text;

namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

           string[] hero = new string[] {"关羽","张飞","赵云","马超","黄忠"};//请在这里完善代码

          

               for (int i = 0;i < hero.length;i++)

          

           {

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

           }

        }

    }

}


写回答 关注

3回答

  • 无根鸟飞呀飞
    2018-09-29 20:33:15

    Length这个大小写弄错了,C#是严格区分大小写的。

    慕运维041...

    那些词要用大写,那些小写?

    2018-11-27 11:00:00

    共 1 条回复 >

  • 越努力越幸运123
    2018-08-27 17:01:39

    for (int i = 0;i < hero.Length;i++) // 其中的hero.Length  L为大写

  • jdalpha
    2018-08-10 17:25:56

    using System;

    using System.Collections.Generic;

    using System.Text;

    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

               string[] hero = new string[] {"关羽","张飞","赵云","马超","黄忠"};//请在这里完善代码

              

                   for (int i = 0;i < 5;i++)

              

               {

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

               }

            }

        }

    }


C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题