Advertisement
MChaos

С# 6x6

Sep 26th, 2022
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. // Online C# Editor for free
  2. // Write, Edit and Run your C# code using C# Online Compiler
  3.  
  4. using System;
  5.  
  6. public class HelloWorld
  7. {
  8.     public static void Main(string[] args)
  9.     {
  10.         Random rando = new Random();
  11.        int[,] array = new int[6, 6];
  12.             // Заполняем единички
  13.             for (int x = 0; x < 6; x++)
  14.             {
  15.                 array[x, 0] = rando.Next(0, 2);
  16.             }
  17.             for (int y = 0; y < 6; y++)
  18.             {
  19.                 array[0, y] = rando.Next(0, 2);
  20.             }
  21.  
  22.             // Выводим массив
  23.             for (int y = 0; y < 6; y++)
  24.             {
  25.                 for (int x = 0; x < 6; x++)
  26.                 {
  27.                     Console.Write(array[x, y] + " ");
  28.                 }
  29.                 Console.WriteLine();
  30.             }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement