我这咋有问题啊?

来源:5-3 编程练习

疯子亨特

2024-09-16 17:46

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

           //请在这里完善代码

           string[] name =new string[]{"关羽","张飞","赵云","马超","黄忠"};

           for(int i=0 ; i<name.Length ; i++){

               Console.Write(name[i]+",");

           } 

        }

    }

}


写回答 关注

1回答

  • 慕勒4616183
    2024-09-22 14:22:23

    for 循环后面的()是中文状态下的,改成英文输入

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254117 学习 · 1459 问题

查看课程

相似问题