string[,] examInfo = new string[8,2]{{"吴松","89"},{"钱东宇","90"},{"伏晨","98"},{"陈陆","56"},{"周蕊","60"},{"林日鹏","91"},{"何晶","93"},{"关欣","85"}};
int score = 0;
string name = "";
for(int i = 0; i < examInfo.GetLongLength(0); i++)
{
int score = 0;
string name = "";
for(int i = 0; i < examInfo.GetLongLength(0); i++)
{
string[,] examInfo = new string[8,2]{{"吴松","89"},{"钱东宇","90"},{"伏晨","98"},{"陈陆","56"},{"周蕊","60"},{"林日鹏","91"},{"何晶","93"},{"关欣","85"}};
最赞回答 / 慕数据6914329
string[] name = new string []{ "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" }; int[] score = new int[] { 89, 90, 98, 56, 60, 91, 93, 85 };你没有加[],for (int i = 0; i < score.Length; i++)不是<=,而是<更改后:using System;using System.Collection...
2018-04-01
学完这个课程,感觉可能是网页的原因吧,感觉答案挺死板的。而且出题的人特别爱玩Console.Write和Console.WriteLine这个梗
2018-03-31
string[,] tx = { { "吴松", "89" }, { "钱东宇", "90" }, { "伏晨", "98" }, { "陈陆", "56" }, { "周蕊", "60" }, { "林日鹏", "91" }, { "何昆", "93" }, { "关欣", "85" } };
int max = 0;
int j = -1;
int max = 0;
int j = -1;
for (int x = 1;x <= 6;x++ )//请填写for循环结构
{
Console.WriteLine("Yeah!");
}
{
Console.WriteLine("Yeah!");
}
int y = 5;
while (y >=1)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
while (y >=1)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
2018-03-31