Advertisement
IGRODELOFF

Task21

Apr 5th, 2022
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.92 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Task21
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Random random = new Random();
  10.  
  11.             string maxValueAlert = "\n\nМаксимальное значение всего массива равно: ";
  12.             string modifiedArray = "\n\nИзменённый массив: ";
  13.             string emptyLine = " ";
  14.             int minValue = 0;
  15.             int maxValue = 10;
  16.             int maxValueElementArray = 0;      
  17.             int valueForArray = 10;
  18.  
  19.             int[,] array = new int[valueForArray, valueForArray];
  20.  
  21.             for (int i = minValue; i < array.GetLength(0); i++)
  22.             {
  23.                 for (int j = minValue; j < array.GetLength(1); j++)
  24.                 {
  25.                     array[i, j] = random.Next(minValue, maxValue);
  26.                     Console.Write(array[i, j] + " ");
  27.                     if (array[i,j] > maxValueElementArray)
  28.                     {
  29.                         maxValueElementArray = array[i, j];
  30.                     }
  31.                 }
  32.                 Console.WriteLine(emptyLine);
  33.             }
  34.  
  35.             for (int i = minValue; i < array.GetLength(0); i++)
  36.             {
  37.                 for (int j = minValue; j < array.GetLength(1); j++)
  38.                 {
  39.                     if (array[i, j] == maxValueElementArray)
  40.                     {
  41.                         array[i, j] = minValue;
  42.                     }
  43.                 }
  44.             }
  45.  
  46.             Console.WriteLine(maxValueAlert + maxValueElementArray);
  47.             Console.WriteLine(modifiedArray);
  48.  
  49.             for (int i = minValue; i < array.GetLength(0); i++)
  50.             {
  51.                 for (int j = minValue; j < array.GetLength(1); j++)
  52.                 {
  53.                     Console.Write(array[i, j] + " ");
  54.                 }
  55.                 Console.WriteLine(emptyLine);
  56.             }
  57.         }
  58.     }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement