已采纳回答 / 慕丝0026560
你这个代码会把第一个人的名字输进去。因为你的max初始值为0,不管是哪个同学的分数都比这个高,所以第一个同学的名字一定会出来,你把max的初始值设置成score[0]就好了。
2016-05-08
//声明“职位”数组,初始化为:"经理","项目主管","技术总监","财务主管"
string[] job = new string[4];
job[0] = "经理";
job[1] = "项目主管";
job[2] = "技术总监";
job[3] = "财务主管";
for (int i = 0; i < job.Length; i++)
{
Console.Write(job[i]);//打印职位
string[] job = new string[4];
job[0] = "经理";
job[1] = "项目主管";
job[2] = "技术总监";
job[3] = "财务主管";
for (int i = 0; i < job.Length; i++)
{
Console.Write(job[i]);//打印职位
2016-05-08
已采纳回答 / 宝哥来也哦哦
输出语句括号里Console.Write(“”);他是输出双引号里的内容,如果是运算符,里面就会产生运算比如Console.Write("hello"+"world");这个语句中+运算符把这两个字符串合并到一起,输出helloworld
2016-05-05
最新回答 / 一筐
VS输出应该是“没有7的整倍数”吧?没有“按任意键继续...”吧?你用了Console.ReadLine(); 意思是等待接受从键盘输入的数据,而没有让程序结束。。
2016-05-05
int x = 5;
int y = 6;
if (x >= y)
{
if (x >= 5)
{
Console.WriteLine("5");
}
}
else
if (y >= 6)
{
Console.WriteLine("6");
}
else
{
Console.WriteLine("7");
}
int y = 6;
if (x >= y)
{
if (x >= 5)
{
Console.WriteLine("5");
}
}
else
if (y >= 6)
{
Console.WriteLine("6");
}
else
{
Console.WriteLine("7");
}
2016-05-04