慕沐8155685
2019-07-11 09:45
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string[] names={"关羽","张飞","赵云","马超","黄忠"};
for(int i=0; i< names.length; i++)//请在这里完善代码
{
Console.Write(names[i]);
}
}
}
}
string[] names=new string[]{"关羽","张飞","赵云","马超","黄忠"};
你没有new一个新数组
我知道了length,L大写
C#开发轻松入门
254118 学习 · 1459 问题
相似问题