Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Text;
- namespace _9._8
- {
- class Program
- {
- static void printMass(int[,] mas, int n)
- {
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < n; j++)
- Console.Write(mas[i, j] + " ");
- Console.WriteLine();
- }
- }
- static void swapMas(int[,] mas, int n)
- {
- for (int i = 0; i < n; i++)
- for (int j = 0; j < n; j++)
- if (j >= i)
- mas[i, j] = 0;
- }
- static void Main()
- {
- Console.WriteLine("Введи размер n");
- int n = int.Parse(Console.ReadLine());
- Random rand = new Random();
- int[,] array = new int[n, n];
- //Создание массива
- for (int i = 0; i < n; i++)
- for (int j = 0; j < n; j++)
- array[i, j] = rand.Next(-5, 25);
- //Вывод начального массива
- Console.WriteLine("\nМассив:");
- printMass(array, n);
- //Замена эл-тов массив
- swapMas(array, n);
- //Вывод замененного массива
- Console.WriteLine("\n\nЗамененный Массив:");
- printMass(array, n);
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement