Displaying a Number in Different Formats in C#

In this exercise, you will create a C# program that prompts the user for a number and displays it in two different formats:

1. The number should be printed four times in a row, separated by spaces.

2. The number should be printed four times in a row with no spaces in between.

You will implement this twice:

1. First, using Console.Write().

2. Then, using a formatted string {0} with Console.WriteLine().

This exercise will help you understand how to control output formatting using Console.Write() and Console.WriteLine() while reinforcing string manipulation skills.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to develop a C# program that asks the user for a number and prints it in two different formats—first with spaces and then without—using both Console.Write() and formatted strings.

Write a C# program to ask the user for a number and display it four times in a row, separated with blank spaces, and then four times in the next row, with no separation. You must do it two times: first using Console.Write() and then using {0}.

Example C# Exercise

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

using System;

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

            // Prompt the user to enter a number
            Console.Write("Enter a number: ");
            number = Convert.ToInt32(Console.ReadLine()); // Read and convert the input to an integer

            // First method: Using Console.Write()
            Console.Write("\nUsing Console.Write():\n");
            Console.Write(number + " " + number + " " + number + " " + number); // Print with spaces
            Console.Write("\n");
            Console.Write(number + "" + number + "" + number + "" + number); // Print without spaces
            Console.Write("\n\n");

            // Second method: Using formatted strings with {0}
            Console.WriteLine("Using {0} format:\n");
            Console.WriteLine("{0} {0} {0} {0}", number); // Print with spaces
            Console.WriteLine("{0}{0}{0}{0}", number); // Print without spaces

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

 Output

Enter a number: 7

Using Console.Write():
7 7 7 7
7777

Using {0} format:
7 7 7 7
7777

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

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

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