代码哪里有问题
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]+",");
}
}
}
}