string[] job = {"经理","项目主管","技术总监","财务主管"};
for (int i = 0; i < job.Length ; i++)
{
Console.WriteLine(job[i]);//打印职位
}
应该是Console.Write()
我觉得这个就是正确的~