【发布时间】:2016-03-05 23:49:59
【问题描述】:
这可能看起来很荒谬,或者我什至没有尝试过,但相信我,我做到了。
我能做的就是:
float[,] notes = new float[6, 3];
int l, c;
在那之后我迷失了尝试这样的事情
for (l = 0; l <= notes.GetUpperBound(0); l++)
{
for (c = 0; c <= notes.GetUpperBound(1); c++)
{
Console.Write("{0,5} ", notes[l, c]);
}
Console.WriteLine();
}
Console.ReadLine();
但这里没有多少工作。 更不用说我什至不确定如何在其中加入随机化器......它还需要计算每列中的奇数。
因此,我需要指导该做什么以及该由谁来做。
【问题讨论】: