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

求大佬解答一下;这哪里有错误。

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]);
           }//请在这里完善代码
        }
    }
}

提问者:慕粉1089760 2022-10-13 22:32

个回答

  • 慕函数7131464
    2022-10-27 09:32:08

    没错,只是慕课要求打印的有逗号