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

This task will help you improve your understanding of user input handling, mathematical operations, and formatted output in C#. Additionally, it demonstrates the distributive property of multiplication over addition in algebra, reinforcing the concept that (a+b)⋅c=a⋅c+b⋅c.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to develop a C# program that prompts the user to enter three numbers (a, b, and c), computes the two expressions (a+b)⋅c and a⋅c+b⋅c, and displays the results in a structured format.

Write a C# program to ask the user for three numbers (a, b, c) and display the result of (a + b) · c and the result of a · c + b · c.

Example C# Exercise

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

using System;

namespace ArithmeticOperations
{
    class Program
    {
        // The Main method is where the program execution begins
        static void Main(string[] args)
        {
            // Declare variables to store the three numbers
            double a, b, c;
            double result1, result2;

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

            // Prompt the user to enter the second number (b)
            Console.Write("Enter the second number (b): ");
            b = Convert.ToDouble(Console.ReadLine());

            // Prompt the user to enter the third number (c)
            Console.Write("Enter the third number (c): ");
            c = Convert.ToDouble(Console.ReadLine());

            // Calculate the results of the two expressions
            result1 = (a + b) * c;
            result2 = (a * c) + (b * c);

            // Display the results
            Console.WriteLine("\nResults:");
            Console.WriteLine("({0} + {1}) * {2} = {3}", a, b, c, result1);
            Console.WriteLine("{0} * {2} + {1} * {2} = {3}", a, b, c, result2);

            // 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 (a): 2  
Enter the second number (b): 3  
Enter the third number (c): 4  

Results:  
(2 + 3) * 4 = 20  
2 * 4 + 3 * 4 = 20  

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

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

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