Почему не выводит матрицу на экран? - C#

Узнай цену своей работы

Формулировка задачи:

Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7. namespace matr
  8. {
  9. class Program
  10. {
  11. static bool GenerateFile(string NameFile, int stroka, int stolbec, int minRange, int maxRange)
  12. {
  13. StreamWriter proga = new StreamWriter(NameFile);
  14. if (proga == null)
  15. return false;
  16. else
  17. {
  18. proga.WriteLine(stroka); //это мы в файл на первую и вторую строку записываем количество строк и количество столбцов
  19. proga.WriteLine(stolbec);
  20. Random Rnd = new Random();
  21. if (minRange > maxRange)
  22. {
  23. int k = minRange;
  24. minRange = maxRange;
  25. maxRange = k;
  26. }
  27. for (int i = 0; i < stroka; i++)
  28. {
  29. for (int j = 0; j < stolbec; j++)
  30. {
  31. proga.Write(Rnd.Next(minRange, maxRange));
  32. proga.Write(' ');
  33. }
  34. proga.WriteLine("\n");
  35. }
  36. proga.Close();
  37. return true;
  38. }
  39. }
  40. static int[,] CheckTheFile(string NameFile, out int Err)
  41. {
  42. StreamReader proga = new StreamReader(NameFile);
  43. int cod = 0;
  44.  
  45. if (((cod = proga.Read()) == (-1)))
  46. {
  47. Err = 2;
  48. }
  49. proga.Close();
  50. proga = new StreamReader(NameFile);
  51. int stolbec = 0;
  52. int stroka = 0;
  53. string L;
  54. if ((L = proga.ReadLine()) != null)
  55. {
  56. stroka = Convert.ToInt32(L);
  57. stolbec = Convert.ToInt32(L);
  58. }
  59. int[,] Mas = new int[stroka, stolbec];
  60. Err = 0;
  61. if (proga == null)
  62. Err = 1;
  63. else
  64. {
  65. string str = null;
  66. int chisla;
  67. int i = 0;
  68. int j = 0;
  69. bool f = true;
  70. for (; j < stolbec; j++)
  71. {
  72. for (; i < stroka; i++)
  73. {
  74. while ((cod = proga.Read()) != -1)
  75. {
  76. if (cod > 47 && cod < 58)
  77. {
  78. char simbol = Convert.ToChar(cod);
  79. str = str + simbol;
  80. f = true;
  81. }
  82. else
  83. {
  84. if (cod == 32)
  85. {
  86. if (f == false)
  87. {
  88. break;
  89. }
  90. chisla = Convert.ToInt32(str);
  91. Mas[i, j] = chisla;
  92. i++;
  93. Err = 0;
  94. str = null;
  95. chisla = 0;
  96. f = false;
  97. }
  98. else
  99. {
  100. Err = 2;
  101. break;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. proga.Close();
  108. }
  109. return Mas;
  110. }
  111. static void Main(string[] args)
  112. {
  113. string S = ("C:\\proga.txt");
  114. int Err;
  115. int stroka, stolbec, minRange, maxRange;
  116. Console.WriteLine("Vvedite parametrs");
  117. string Str;
  118. Str = Console.ReadLine();
  119. stroka = Convert.ToInt32(Str);
  120. Console.Write("\n");
  121. Str = Console.ReadLine();
  122. stolbec = Convert.ToInt32(Str);
  123. Console.Write("\n");
  124. Str = Console.ReadLine();
  125. minRange = Convert.ToInt32(Str);
  126. Console.Write("\n");
  127. Str = Console.ReadLine();
  128. maxRange = Convert.ToInt32(Str);
  129. Console.Write("\n");
  130.  
  131. if ((stolbec <= 0) || (stroka <= 0))
  132. Console.WriteLine("Nevern parameters");
  133. else
  134. {
  135. bool f = GenerateFile(S, stolbec, stroka, minRange, maxRange);
  136. if (f == true)
  137. {
  138. Console.WriteLine("Open file");
  139. int[,] Mas = CheckTheFile(S, out Err);
  140. if (Err == 0)
  141. {
  142. for (int i = 0; i < stroka; i++)
  143. {
  144. for (int j = 0; j < stolbec; j++)
  145. {
  146. Console.Write("{0,3},", Mas[i, j]);
  147. }
  148. Console.WriteLine("\n");
  149. }
  150. }
  151. }
  152. }
  153. }
  154. }
  155. }

Решение задачи: «Почему не выводит матрицу на экран?»

textual
Листинг программы
  1. using System;
  2. using System.IO;
  3. using System.Text;
  4.  
  5. namespace ConsoleApplication1
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             string pathToFile = "C:\\proga.txt";
  12.  
  13.             int rows, columns, minRange, maxRange;
  14.             Console.WriteLine("Input parameters in line (rows columns minRange maxRange):");
  15.  
  16.             var pString = Console.ReadLine().Split();
  17.             rows = int.Parse(pString[0]);
  18.             columns = int.Parse(pString[1]);
  19.             minRange = int.Parse(pString[2]);
  20.             maxRange = int.Parse(pString[3]);
  21.  
  22.             int[,] matrix = new int[rows, columns];
  23.  
  24.             FillRandom(matrix, minRange, maxRange);
  25.             WriteToFile(matrix, pathToFile);
  26.  
  27.             int[,] matrixReconstructed = ReadFromFile(pathToFile);
  28.             Console.WriteLine(MatrixToString(matrixReconstructed));
  29.         }
  30.  
  31.         static void FillRandom(int[,] matrix, int min, int max)
  32.         {
  33.             Random r = new Random();
  34.  
  35.             for (int i = 0; i < matrix.GetLength(0); i++)
  36.                 for (int j = 0; j < matrix.GetLength(1); j++)
  37.                     matrix[i, j] = r.Next(min, max);
  38.         }
  39.  
  40.         static string MatrixToString(int[,] matrix)
  41.         {
  42.             StringBuilder sb = new StringBuilder();
  43.  
  44.             sb.AppendLine(matrix.GetLength(0) + " " + matrix.GetLength(1));
  45.  
  46.             for (int i = 0; i < matrix.GetLength(0); i++)
  47.             {
  48.                 for (int j = 0; j < matrix.GetLength(1); j++)
  49.                     sb.Append(matrix[i, j] + " ");
  50.                 sb.AppendLine();
  51.             }
  52.  
  53.             return sb.ToString();
  54.         }
  55.  
  56.         static void WriteToFile(int[,] matrix, string pathToFile)
  57.         {
  58.             using (StreamWriter sWriter = new StreamWriter(pathToFile))
  59.             {
  60.                 sWriter.Write(MatrixToString(matrix));
  61.             }
  62.         }
  63.  
  64.         static int[,] ReadFromFile(string pathToFile)
  65.         {
  66.             int[,] matrix;
  67.             int rows, columns;
  68.  
  69.             using (StreamReader sReader = new StreamReader(pathToFile))
  70.             {
  71.                 var dimensions = sReader.ReadLine().Split();
  72.  
  73.                 rows = int.Parse(dimensions[0]);
  74.                 columns = int.Parse(dimensions[1]);
  75.  
  76.                 matrix = new int[rows, columns];
  77.                 for (int i = 0; i < rows; i++)
  78.                 {
  79.                     var line = sReader.ReadLine().Split();
  80.                     for (int j = 0; j < columns; j++)
  81.                     {
  82.                         matrix[i, j] = int.Parse(line[j]);
  83.                     }
  84.                 }
  85.             }
  86.  
  87.             return matrix;
  88.         }
  89.     }
  90. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

14   голосов , оценка 4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы