static void Main(string[] args)
{
string[] job =new string[]={"经理","项目主管","技术总监","财务主管"};
for (int i = 0; i <job.Length ; i++)
{
Console.WriteLine(job[i]+" ");//打印职位
}
}
}
}
{
string[] job =new string[]={"经理","项目主管","技术总监","财务主管"};
for (int i = 0; i <job.Length ; i++)
{
Console.WriteLine(job[i]+" ");//打印职位
}
}
}
}
2017-04-24