感觉两节内容可以用一段代码搞定
把max当索引,轻轻松松
for(i=0;i<score.Length;i++)
{
if(score[i]>=score[max])
{
max = i;
}
}
把max当索引,轻轻松松
for(i=0;i<score.Length;i++)
{
if(score[i]>=score[max])
{
max = i;
}
}
2020-07-23
核心代码
for(i=0;i<score.Length;i++)
{
if(score[i]>=score[max])
{
max = i;
}
}
for(i=0;i<score.Length;i++)
{
if(score[i]>=score[max])
{
max = i;
}
}
vs2019官方下载链接https://visualstudio.microsoft.com/zh-hans/vs/
个人使用选第一个就行
个人使用选第一个就行
2020-07-15
正确答案
if (x >= y)
{
if (x >= 5)
Console.WriteLine("5");
}
else if (y >= 6)
{
Console.WriteLine("6");
}
else{
Console.WriteLine("7");
}
if (x >= y)
{
if (x >= 5)
Console.WriteLine("5");
}
else if (y >= 6)
{
Console.WriteLine("6");
}
else{
Console.WriteLine("7");
}
2020-06-14