Advertisement
Nikitka_36

9.7

Nov 6th, 2014
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.15 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4.  
  5. namespace _9._7
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int n = int.Parse(Console.ReadLine());
  12.             int m = int.Parse(Console.ReadLine());
  13.  
  14.             Random rand = new Random();
  15.             int [,] array = new int[n,m];
  16.             //Создание массива
  17.             for (int i = 0; i < n; i++)
  18.             {
  19.                 Console.WriteLine();
  20.                 for (int j = 0; j < m; j++)
  21.                 {
  22.                     array[i,j] = rand.Next(-20,25);
  23.                     Console.Write(array[i, j] + " ");
  24.                 }
  25.             }
  26.             bool GoodEl = false, someGood = false;
  27.             //Нахождение положительных строк
  28.             for (int i = 0; i < n; i++)
  29.             {
  30.                 for (int j = 0; j < m; j++)
  31.                 {
  32.                     if (array[i, j] > 0)
  33.                         GoodEl = true;
  34.                     else
  35.                     {
  36.                         GoodEl = false;
  37.                         break;
  38.                     }
  39.                    
  40.                 }
  41.                 if (GoodEl)
  42.                 {
  43.                     someGood = true;
  44.                     Console.WriteLine("\n\nСтрока " + (i + 1) + " положительна");
  45.                 }
  46.             }
  47.  
  48.             //Нахождение положительных столбцов
  49.             for (int j = 0; j < m; j++)
  50.             {
  51.                 for (int i = 0; i < n; i++)
  52.                 {
  53.                     if (array[i, j] > 0)
  54.                         GoodEl = true;
  55.                     else
  56.                     {
  57.                         GoodEl = false;
  58.                         break;
  59.                     }
  60.                 }
  61.                 if (GoodEl)
  62.                 {
  63.                     someGood = true;
  64.                     Console.WriteLine("\n\nСтолбец " + (j + 1) + " положителен");
  65.                 }
  66.             }
  67.             if (!someGood)
  68.                 Console.WriteLine("\n\n0");
  69.             Console.ReadKey();
  70.         }
  71.     }
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement