Display a Rectangle with User-Defined Dimensions Using a Symbol in C#

This C# program is designed to prompt the user for a number, the width, and the height of a rectangle. The user will input a number that will be used as the symbol to form the rectangle, and two other inputs will determine the rectangle’s dimensions (width and height). The program will then display the rectangle using the specified symbol in the form of rows and columns.

In the example provided, the user is asked to enter:

A symbol (a number).

A width (number of characters per row).

A height (number of rows to print).

The program will then output a rectangle made up of the specified number of symbols. This task allows the user to customize the rectangle’s appearance through input, and it shows how to use nested loops to control the creation of a shape based on user input.

The program will employ basic concepts of loops and user input handling to dynamically generate the required shape.



Group

C# Flow Control Basics

Objective

Write a C# program that asks for a number, width, and height, and displays a rectangle of that width and height, using that number for the inner symbol, as shown in the example below:

Enter a number: 4
Enter the desired width: 3
Enter the desired height: 5

444
444
444
444
444

Example C# Exercise

 Copy C# Code
using System;

namespace RectangleDisplay
{
    class Program
    {
        static void Main(string[] args)
        {
            // Prompt the user for input: symbol, width, and height of the rectangle
            Console.Write("Enter a number (symbol): ");
            int number = int.Parse(Console.ReadLine());  // Store the number entered by the user for the symbol

            Console.Write("Enter the desired width: ");
            int width = int.Parse(Console.ReadLine());  // Store the width of the rectangle

            Console.Write("Enter the desired height: ");
            int height = int.Parse(Console.ReadLine());  // Store the height of the rectangle

            // Use a nested loop to print the rectangle
            // Outer loop controls the height (number of rows)
            for (int i = 0; i < height; i++)  
            {
                // Inner loop controls the width (number of symbols per row)
                for (int j = 0; j < width; j++)
                {
                    // Print the symbol for each position in the row
                    Console.Write(number);
                }
                // After each row is printed, move to the next line
                Console.WriteLine();
            }
        }
    }
}

 Output

Enter a number (symbol): 4
Enter the desired width: 3
Enter the desired height: 5
444
444
444
444
444

Share this C# Exercise

More C# Practice Exercises of C# Flow Control Basics

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#.