Displaying a Number as a 3x5 Rectangle in C#

In this exercise, you will create a C# program that prompts the user for a single-digit number and then uses that digit to draw a 3-column by 5-row rectangle. The rectangle follows a specific pattern:

1. The first and last rows display the digit three times in a row.

2. The middle three rows display the digit on the left and right sides, with a space in the middle.

This exercise reinforces string formatting and basic Console.WriteLine() usage in C#.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to develop a C# program that prompts the user for a number and prints a 3x5 rectangle using that digit, demonstrating how to manipulate text-based output.

Write a C# program to prompt the user for a number and then display a rectangle 3 columns wide and 5 rows high using that digit.

Example C# Exercise

 Copy C# Code
// First and Last Name: John Doe

using System;

namespace RectanglePattern
{
    class Program
    {
        // The Main method is where the program execution begins
        static void Main(string[] args)
        {
            // Declare a variable to store the user's digit
            char digit;

            // Prompt the user to enter a single digit
            Console.Write("Enter a digit: ");
            digit = Console.ReadKey().KeyChar; // Read a single character from user input
            Console.WriteLine("\n"); // Move to the next line

            // Print the first row (solid row)
            Console.WriteLine("{0}{0}{0}", digit);

            // Print the middle three rows (hollow part)
            Console.WriteLine("{0} {0}", digit);
            Console.WriteLine("{0} {0}", digit);
            Console.WriteLine("{0} {0}", digit);

            // Print the last row (solid row)
            Console.WriteLine("{0}{0}{0}", digit);

            // Wait for user input before closing the program
            Console.ReadKey(); // Keeps the console open until a key is pressed
        }
    }
}

 Output

//Example 1:
Enter a digit: 3

333
3 3
3 3
3 3
333

//Example 2:
Enter a digit: 8

888
8 8
8 8
8 8
888

Share this C# Exercise

More C# Practice Exercises of Getting Started with C# Programming

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

  • Celsius to Kelvin and Fahrenheit Converter in C#

    In this exercise, we will create a C# program that converts a temperature value from Celsius to both Kelvin and Fahrenheit. The program will prompt the user to input a temperature ...

  • Introduction to C# Programming

    In this exercise, you will get introduced to the C# programming language and its basic syntax. You'll learn how to write your first C# program, understand how the structure of a C#...

  • Simple Addition in C#

    In this exercise, you will write a basic C# program that performs a simple addition of two numbers, 12 and 13. This will help you understand how to perform basic arithmetic operati...

  • Simple Division in C#

    In this exercise, you will write a basic C# program that performs a simple division operation. The program will divide 24 by 5 and display the result. This exercise will help you u...

  • Basic Arithmetic Operations in C#

    In this exercise, you will create a C# program that evaluates and displays the results of several mathematical operations. These operations involve the use of basic arithmetic oper...

  • Multiplying Two User-Entered Numbers in C#

    In this exercise, you will create a simple C# program that takes two numbers as input from the user, multiplies them, and then displays the result. This exercise will help you prac...