Generating a Multiplication Table in C#

In this exercise, you will create a C# program that prompts the user to enter a number and then displays its multiplication table from 1 to 10. This exercise will help you understand loops, user input handling, and formatted console output. By the end of this task, you will be able to use loops efficiently to generate repetitive output and enhance user interaction in console applications.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to develop a C# program that prompts the user to enter a number and then prints its multiplication table from 1 to 10 in a structured format.

Write a C# program to prompt the user for a number and display its multiplication table, as follows:

5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
...
5 x 10 = 50

Example C# Exercise

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

using System;

namespace MultiplicationTable
{
    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;

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

            // Display the multiplication table manually without using loops
            Console.WriteLine("\nMultiplication Table of {0}:", number);
            Console.WriteLine("{0} x 1 = {1}", number, number * 1);
            Console.WriteLine("{0} x 2 = {1}", number, number * 2);
            Console.WriteLine("{0} x 3 = {1}", number, number * 3);
            Console.WriteLine("{0} x 4 = {1}", number, number * 4);
            Console.WriteLine("{0} x 5 = {1}", number, number * 5);
            Console.WriteLine("{0} x 6 = {1}", number, number * 6);
            Console.WriteLine("{0} x 7 = {1}", number, number * 7);
            Console.WriteLine("{0} x 8 = {1}", number, number * 8);
            Console.WriteLine("{0} x 9 = {1}", number, number * 9);
            Console.WriteLine("{0} x 10 = {1}", number, number * 10);

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

 Output

Enter a number: 5  

Multiplication Table of 5:  
5 x 1 = 5  
5 x 2 = 10  
5 x 3 = 15  
5 x 4 = 20  
5 x 5 = 25  
5 x 6 = 30  
5 x 7 = 35  
5 x 8 = 40  
5 x 9 = 45  
5 x 10 = 50  

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

  • Calculating the Average of Four Numbers in C#

    In this exercise, you will create a C# program that prompts the user to enter four numbers and then calculates their average. This exercise is designed to strengthen your understan...

  • Arithmetic Operations with Three Numbers in C#

    In this exercise, you will create a C# program that asks the user to enter three numbers (a, b, and c) and calculates two expressions based on these inputs: (a+b)⋅c a⋅c+b⋅c ...

  • Age-Based Response in C#

    In this exercise, you will create a C# program that asks the user to enter their age and then responds with a friendly message, such as: "You look younger than [age entered]" Thi...

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

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