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 practice working with user input, performing multiplication, and displaying the output. It is a great way to become familiar with basic arithmetic operations in C# and to understand how to handle user input and output in a console application.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to write a program that accepts two numbers entered by the user, multiplies them, and prints the result.

Write a C# program to print the result of multiplying two numbers which will be entered by the user.

Example C# Exercise

 Copy C# Code
// This program multiplies two numbers entered by the user and displays the result
using System;

namespace MultiplyTwoNumbers
{
    class Program
    {
        // The Main method is where the program execution begins
        static void Main(string[] args)
        {
            // Declare variables to store the numbers
            double number1, number2, result;

            // Ask the user to enter the first number
            Console.Write("Enter the first number: ");
            number1 = Convert.ToDouble(Console.ReadLine()); // Read and convert the input to a double

            // Ask the user to enter the second number
            Console.Write("Enter the second number: ");
            number2 = Convert.ToDouble(Console.ReadLine()); // Read and convert the input to a double

            // Perform the multiplication
            result = number1 * number2;

            // Display the result
            Console.WriteLine("The result of multiplying {0} and {1} is: {2}", number1, number2, result);

            // 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 the first number: 8
Enter the second number: 7
The result of multiplying 8 and 7 is: 56

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

  • Multiplying Three Numbers with User Input in C#

    In this exercise, you will write a C# program that asks the user to enter three numbers and displays their multiplication. This exercise helps you practice using formatted output w...

  • Performing Basic Arithmetic Operations in C#

    In this exercise, you will write a C# program that takes two numbers as input from the user and performs various arithmetic operations on them. The program will display the sum, di...

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

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