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, difference, product, quotient, and remainder of the division of these numbers. This exercise helps you practice user input handling, arithmetic operators, and formatted console output. By the end of this task, you will be comfortable performing calculations and displaying results dynamically in a console application.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to develop a C# program that takes two user-input numbers and performs addition, subtraction, multiplication, division, and modulus operations, displaying the results in a structured format.

Write a C# program to print on screen the result of adding, subtracting, multiplying, and dividing two numbers typed by the user. The remainder of the division must be displayed, too.

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 user input
            int number1, number2;

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

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

            // Perform arithmetic operations
            int sum = number1 + number2;
            int difference = number1 - number2;
            int product = number1 * number2;
            int quotient = number1 / number2; // Integer division
            int remainder = number1 % number2; // Modulus operation

            // Display results with formatted output
            Console.WriteLine("{0} + {1} = {2}", number1, number2, sum);
            Console.WriteLine("{0} - {1} = {2}", number1, number2, difference);
            Console.WriteLine("{0} x {1} = {2}", number1, number2, product);
            Console.WriteLine("{0} / {1} = {2}", number1, number2, quotient);
            Console.WriteLine("{0} mod {1} = {2}", number1, number2, remainder);

            // 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: 12  
Enter another number: 3  
12 + 3 = 15  
12 - 3 = 9  
12 x 3 = 36  
12 / 3 = 4  
12 mod 3 = 0  

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

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

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