求大神解答
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string [] job = new string[]{"经理","项目主管","技术总监","财务总监"};//声明“职位”数组,初始化为:"经理","项目主管","技术总监","财务主管"
for (int i = 0; i <job.Length; i++)
{
Console.WriteLine(job[i]);//打印职位
}
}
}
}