Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Text;
- namespace _9._7
- {
- class Program
- {
- static void Main(string[] args)
- {
- int n = int.Parse(Console.ReadLine());
- int m = int.Parse(Console.ReadLine());
- Random rand = new Random();
- int [,] array = new int[n,m];
- //Создание массива
- for (int i = 0; i < n; i++)
- {
- Console.WriteLine();
- for (int j = 0; j < m; j++)
- {
- array[i,j] = rand.Next(-20,25);
- Console.Write(array[i, j] + " ");
- }
- }
- bool GoodEl = false, someGood = false;
- //Нахождение положительных строк
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < m; j++)
- {
- if (array[i, j] > 0)
- GoodEl = true;
- else
- {
- GoodEl = false;
- break;
- }
- }
- if (GoodEl)
- {
- someGood = true;
- Console.WriteLine("\n\nСтрока " + (i + 1) + " положительна");
- }
- }
- //Нахождение положительных столбцов
- for (int j = 0; j < m; j++)
- {
- for (int i = 0; i < n; i++)
- {
- if (array[i, j] > 0)
- GoodEl = true;
- else
- {
- GoodEl = false;
- break;
- }
- }
- if (GoodEl)
- {
- someGood = true;
- Console.WriteLine("\n\nСтолбец " + (j + 1) + " положителен");
- }
- }
- if (!someGood)
- Console.WriteLine("\n\n0");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement