我在txt中有这样的数据:
跳蚤,0,0,1,0,0,0,0,0,0,1,0,0,6,0,0,0,6
青蛙,0,0,1,0,0,1,1,1,1,1,0,0,4,0,0,0,5
青蛙,0,0,1,0,0,1,1,1,1,1,1,0,4,0,0,0,5
我需要计算所选列中零的数量,例如在第一列中有 3 个零。
到目前为止,这是我的代码:
//data patch
string[] tekst = File.ReadAllLines(@"C:\zoo.txt");
//full of array
string[] tablica = tekst;
for(int s=0;s<tablica.Length;s++)
{
Console.WriteLine(tablica[s]);
}
//----------------Show all of array---------------------------//
//----------------Giv a number of column-----------------////
Console.WriteLine("Podaj kolumne");
int a = Convert.ToInt32(Console.ReadLine());
//Console.WriteLine("Podaj wiersz");
//int b = Convert.ToInt32(Console.ReadLine());
int n = tablica.Length;
int m = tablica[a].Split(',').Length;
string[,] liczby = new string[n, m];
for (int j = 0; j < n; j++)
{
int suma = 0;
for (int i = 0; i < m; i++)
{
//somethink should be here
}
}
解决这个问题的任何想法?