对了几遍12行就是出不来。求帮忙。
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string[] whsj=new string[]{"关羽","张飞","赵云","马超","黄忠"};
for (int i=0;i<whsj.length;i++)
{
Console.Write(whsj[i]+",");
}//请在这里完善代码
}
}
}