string[,] score = new string[6, 2] { {"吴松", "89"}, {"钱东宇", "90"}, {"伏晨", "98"}, {"陈陆", "56"}, {"周蕊", "60"},{"林日鹏", "60"} };
int x = 0;
for (int i = 0; i <score.GetLongLength(0); i++)
if(int.Parse(score[x,1]) < int.Parse(score[i,1]))
x = i;
int x = 0;
for (int i = 0; i <score.GetLongLength(0); i++)
if(int.Parse(score[x,1]) < int.Parse(score[i,1]))
x = i;
a=0; b=++a; // 相当于a=a+1;b=a; 结果是a=1,b=1
a=0; b=a++; // 相当于b=a;a=a+1; 结果是a=1,b=0
a=0; b=a++; // 相当于b=a;a=a+1; 结果是a=1,b=0
2016-11-22
最新回答 / 慕移动9181930
元素的实际高度(盒子的高度)=上边界+上边框+上填充+内容高度+下填充+下边框+下边界。变量i是在for循环内定义的,只能在for循环内使用,循环结束就用不了了,所以出错了
2016-11-22
实际上新建一个变量来储存结果,是方便起来其他地方的调用,如果我们在代码的其他部分,想要知道结果,不必来重新开始循环,而是访问这个变量即可。
2016-11-22
string[] NAMES = { "吴松", "钱东宇", "伏晨", "陈路", "周陆", "林日鹏", "何昆", "关欣" };
int[] score = { 29, 90, 98, 56, 60, 91, 93, 85 }; int max= score[0];
int c = 0; for (int i = 1; i < score.Length; i++)
{ if (score[i] > max) {max= score[i];
c = i; } }Console.WriteLine("最高分数的是{0}分数是{1}", max, NAMES[c]);
int[] score = { 29, 90, 98, 56, 60, 91, 93, 85 }; int max= score[0];
int c = 0; for (int i = 1; i < score.Length; i++)
{ if (score[i] > max) {max= score[i];
c = i; } }Console.WriteLine("最高分数的是{0}分数是{1}", max, NAMES[c]);