.NET 4.x Ошибка "IndexOutOfRangeException" при заполнении двумерного массива - C#

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

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

Программа кампилируеться, но при заполнении двумерного массива на строке "x[i,j]=(3*(i+4)*(j+1))/(2*(i+1)+5*(j+2))-j;" и "y[i,j]=i+(4*(i+7)-j)/(i*j+2);" выдаёт "System.IndexOutOfRangeException: Index was outside the bounds of the array. Помогите с решением, пожалуйста. Заранее спасибо "
Листинг программы
  1. using System;
  2. namespace OOP2
  3. {
  4. class Program
  5. {
  6. public static void Main(string[] args)
  7. {
  8. int n=0, m=0, i, j;
  9. Console.Write("Введите значение n");
  10. n = Convert.ToInt32(Console.ReadLine());
  11. Console.Write("Введите значение m");
  12. m = Convert.ToInt32(Console.ReadLine());
  13. int [,] x = new int [m, n];
  14. int [,] y = new int [m, n];
  15.  
  16. for (i=0; i<=m; i++){
  17. for (j=0; j<=n; j++){
  18. x[i,j]=(3*(i+4)*(j+1))/(2*(i+1)+5*(j+2))-j;
  19. y[i,j]=i+(4*(i+7)-j)/(i*j+2);
  20. }
  21. }
  22. for (i=0; i<=m; i++){
  23. for (j=0; j<=n; j++){
  24. Console.WriteLine(x[i,j].ToString()+" ",y[i,j].ToString()+" ");
  25. Console.WriteLine();
  26. }
  27. }
  28.  
  29. // TODO: Implement Functionality Here
  30. Console.Write("Press any key to continue . . . ");
  31. Console.ReadKey(true);
  32. }
  33. }
  34. }

Решение задачи: «.NET 4.x Ошибка "IndexOutOfRangeException" при заполнении двумерного массива»

textual
Листинг программы
  1. using System;
  2.  
  3. namespace OOP2
  4. {
  5.     class Program
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             int  n=0, m=0, i, j;
  10.             Console.Write("Введите значение n ");
  11.             n = Convert.ToInt32(Console.ReadLine());
  12.             Console.Write("Введите значение m ");
  13.             m = Convert.ToInt32(Console.ReadLine());
  14.             int [,] x = new int [m, n];
  15.             int [,] y = new int [m, n];
  16.            
  17.             x[i,j]=f1(x,i,j);
  18.             y[i,j]=f2(y,i,j);
  19.             Console.WriteLine("Массив Х");
  20.              for (i=0; i<m; i++){
  21.                
  22.                 for (j=0; j<n; j++){
  23.                 Console.Write(x[i,j].ToString()+" ");
  24.                 }
  25.                 Console.WriteLine();
  26.                
  27.             }
  28.             Console.WriteLine("Массив Y");
  29.              for (i=0; i<m; i++){
  30.                
  31.                 for (j=0; j<n; j++){
  32.                 Console.Write(y[i,j].ToString()+" ");
  33.                 }
  34.                 Console.WriteLine();
  35.             }
  36.            
  37.            
  38.             // TODO: Implement Functionality Here
  39.            
  40.             Console.Write("Press any key to continue . . . ");
  41.             Console.ReadKey(true);
  42.         }
  43.         public static Int32 F1(int[,] x)
  44.         {
  45.            
  46.             int  n=0, m=0;
  47.             Console.Write("Введите значение n ");
  48.             n = Convert.ToInt32(Console.ReadLine());
  49.             Console.Write("Введите значение m ");
  50.             m = Convert.ToInt32(Console.ReadLine());
  51.            
  52.         for (int i=0; i<m; i++){
  53.                 for (int j=0; j<n; j++){
  54.                    
  55.                      x[i,j]=(3*(i+4)*(j+1))/(2*(i+1)+5*(j+2))-j;
  56.                    
  57.                     return x[i,j];
  58.                     }
  59.                  
  60.             }    
  61.        
  62.         }
  63.         public static Int32 F2(int[,] y)
  64.         {
  65.            
  66.             int  n=0, m=0;
  67.             Console.Write("Введите значение n ");
  68.             n = Convert.ToInt32(Console.ReadLine());
  69.             Console.Write("Введите значение m ");
  70.             m = Convert.ToInt32(Console.ReadLine());
  71.            
  72.         for (int i=0; i<m; i++){
  73.                 for (int j=0; j<n; j++){
  74.                    
  75.                      y[i,j]=i+(4*(i+7)-j)/(i*j+2);
  76.                         return y[i,j];         
  77.                 }  
  78.             }          
  79.         }
  80.     }
  81. }

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


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

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

6   голосов , оценка 4.333 из 5

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

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

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