求大佬解答一下;這哪里有錯誤。
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
??? class Program
??? {
??????? static void Main(string[] args)
??????? {
?????????? string[] names=new string[]{"關羽","張飛","趙云","馬超","黃忠"};
?????????? for(int i =0; i <names.Length;i++)
?????????? {
?????????????? Console.Write(names[i]);
?????????? }//請在這里完善代碼
??????? }
??? }
}
2022-10-27
沒錯,只是慕課要求打印的有逗號