王庭序曲
2016-09-12 10:44
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//声明“职位”数组,初始化为:"经理","项目主管","技术总监","财务主管"
string[] job =[]{"经理","项目主管","技术总监","财务主管"};
for (int i = 0; i <job.Length; i++)
{
Console.Write(job[i]);//打印职位
}
}
}
}
string[] job =后面没有[]
C#开发轻松入门
254118 学习 · 1459 问题
相似问题