这是我的归档函数,它从文件中获取数据并将其放入数组中:
public void populate_grid_by_file()
{
String store_data_from_file = string.Empty;
try
{
using (StreamReader reader = new StreamReader("data.txt"))
{
store_data_from_file = reader.ReadToEnd().ToString();
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
string[] line = store_data_from_file.Split(new char[] { '\n' }, StringSplitOptions.RemoveEmptyEntries);
for (int i = 0; i < line.Length; i++)
{
string[] alphabet = store_data_from_file.Split(new char[] {' '}, StringSplitOptions.RemoveEmptyEntries);
for (int j = 0; j < alphabet.Length; j++)
{
Sodoku_Gri[i, j] = alphabet[j];
}
}
}
这是文件中写的内容:
1--2--3-- 3-4-4-5-- -7-3-4--- 7--5--3-6 --7---4-- 3-2--4-5- ------3-- 2-6---7--- 4---4---3-
这就是我希望它打印的内容:
1 - - 2 - - 3 - - 3 - 4 - 4 - 5 - - - 7 - 3 - 4 - - - 7 - - 5 - - 3 - 6 - - 7 - - - 4 - - 3 - 2 - - 4 - 5 - - - - - - - 3 - - 2 - 6 - - 7 - - - 4 - - - 4 - - 3 -
我想过这样做:
public void display_grid()
{
for (int row = 0; row < Sodoku_Gri.GetLength(0); row++)
{
for (int col = 0; col < Sodoku_Gri.GetLength(1); col++)
{
Console.Write(Sodoku_Gri[row, col]);
Console.Write(" ");
}
Console.WriteLine();
}
}
我只是不明白为什么二维数组在最后一行打印了 9 次 ------------ !
它应该是一个二维数组,每个元素之间都有间距,就像我在文件中显示的数据一样,但没有间距。