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

代码哪里有问题

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]+",");

           }

        }

    }

}


提问者:慕函数9020424 2018-08-10 16:49

个回答

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

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

  • 越努力越幸运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]+",");

               }

            }

        }

    }