Advertisement
BojidarDosev

Zadacha

Oct 11th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp3
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int[,] array = new int[4, 4];
  10.             string s;
  11.             for (int i = 0; i < 4; i++)
  12.             {
  13.                 for (int j = 0; j < 4; j++)
  14.                     array[i, j] = int.Parse(Console.ReadLine());
  15.             }
  16.             for (int i = 0; i < 4; i++)
  17.             {
  18.                 //izvejdane na pregledna tablica
  19.                 s = "";
  20.                 for (int j = 0; j < 4; j++)
  21.                 {
  22.                     s += String.Format("{0,5}", array[i, j]);
  23.                    
  24.                 }
  25.                 Console.WriteLine(s);
  26.             }
  27.             int[] a = new int[8];
  28.             int k = 0;
  29.             int min = 0, max = 0;
  30.             for (int i = 0; i < 4; i++)
  31.             {
  32.                 min = array[i, 0];
  33.                 max = array[i, 0];
  34.                 for (int j = 0; j < 4; j++)
  35.                 {
  36.                     if (array[i, j] < min)
  37.                         min = array[i, j];
  38.                     if (array[i, j] > max)
  39.                         max = array[i, j];
  40.                 }
  41.                 Console.WriteLine("min e " + min + " max e " + max);
  42.                 a[k] = min; a[k + 1] = max;
  43.                 k += 2;
  44.             }
  45.             for (int i = 0; i < 8; i++)
  46.             {
  47.                 Console.Write(a[i] + " ");
  48.             }
  49.             Console.WriteLine();
  50.         }
  51.     }
  52. }
  53. /*
  54. 1
  55. 3
  56. -11
  57. 12
  58. -10
  59. 1
  60. 5
  61. 2
  62. 21
  63. 31
  64. 15
  65. -15
  66. 0
  67. 3
  68. 6
  69. 7
  70. 9
  71. -3
  72.  
  73. */
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement