Randomly Placing Characters in a 2D Array in C#

This C# program declares a 70x20 two-dimensional array of characters and randomly places 80 "X" characters in various positions within the array. After the random placement, it displays the contents of the array on the screen. This exercise demonstrates how to work with 2D arrays, generate random numbers, and manipulate array elements in C#.



Group

C# Arrays, Structures and Strings

Objective

1. Declare a 2D array with dimensions 70x20.
2. Randomly place 80 "X" characters in different positions in the array.
3. Display the entire content of the array, showing "X" where placed and spaces where no "X" was placed.

Write a C# program that declares a 70x20 two-dimensional array of characters, "draws" 80 letters (X, for example) in random positions and displays the content of the array on screen.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    static void Main()
    {
        // Define a 70x20 two-dimensional array
        char[,] grid = new char[70, 20];

        // Create a Random object to generate random numbers
        Random rand = new Random();

        // Initialize the array with empty spaces (' ')
        for (int i = 0; i < 70; i++)
        {
            for (int j = 0; j < 20; j++)
            {
                grid[i, j] = ' '; // Empty space
            }
        }

        // Place 80 'X' characters in random positions
        int placedCount = 0;
        while (placedCount < 80)
        {
            int x = rand.Next(0, 70); // Random X position (0 to 69)
            int y = rand.Next(0, 20); // Random Y position (0 to 19)

            // Place 'X' only if the position is currently empty
            if (grid[x, y] == ' ')
            {
                grid[x, y] = 'X'; // Place 'X'
                placedCount++;     // Increment count of placed 'X'
            }
        }

        // Display the content of the array
        Console.WriteLine("The grid with 80 'X' characters:");
        for (int i = 0; i < 20; i++)
        {
            for (int j = 0; j < 70; j++)
            {
                Console.Write(grid[j, i]);
            }
            Console.WriteLine(); // New line after each row
        }
    }
}

 Output

The grid with 80 'X' characters:
XX   XX X  X           X
   X      X     X     X
 X    X X  X     X X  
 X X    X   X  X      
  X    X     X       
 X  X        X    X   
X X   X    X    X    
X   X         X   X  
   X X   X    X  X   
X    X   X  X   X    
       X   X     X  
    X   X  X    X    
  X    X   X       
   X      X X  X   
     X     X   X   
X   X   X   X X    
X  X   X X X X    
X      X X     X

Share this C# Exercise

More C# Practice Exercises of C# Arrays, Structures and Strings

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Drawing a Circumference in a 2D Array in C#

    In this C# program, we declare a 70x20 two-dimensional array of characters and "draw" a circumference with a radius of 8 inside it. The program calculates the points that make up t...

  • Managing Computer Program Records in C#

    In this C# program, we will create a system to store and manage up to 1000 records of computer programs. Each program will have the following attributes: Name, Category, Descriptio...

  • Managing To-Do Tasks in C#

    This C# program helps to manage a list of to-do tasks by storing up to 2000 tasks. For each task, the program keeps track of the date (day, month, year), a description of the task,...

  • Domestic Accounting System in C#

    This C# program is designed to manage expenses and revenues for a small domestic accounting system. The program allows the user to store up to 10,000 records for expenses and reven...

  • Displaying Numbers in Reverse Order in C#

    This exercise focuses on working with arrays in C#. The program will prompt the user to enter 5 numbers, which will be stored in an array. Once all the numbers have been entered, t...

  • Checking if a Value Exists in a Previously Entered List in C#

    This exercise involves creating and searching within a list of floating-point numbers in C#. The program will first ask the user how many numbers they want to enter and store them ...