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 operators such as addition, multiplication, division, and modulus. You will also learn how to follow operator precedence rules in C# to correctly evaluate expressions. This exercise will help you better understand how to work with mathematical expressions and how to display results to the console in C#. It is essential for practicing and mastering arithmetic operations in programming.



Group

Getting Started with C# Programming

Objective

Create a C# program that displays the result of the following operations:
-1 + 3 * 5
(24 + 5) % 7
15 + -4 * 6 / 11
2 + 10 / 6 * 1 - 7% 2

Example C# Exercise

 Copy C# Code
// This program calculates and displays the results of various arithmetic operations
using System;

namespace ArithmeticOperations
{
    class Program
    {
        // The Main method is where the program execution begins
        static void Main(string[] args)
        {
            // Define variables for the operations
            int result1 = -1 + 3 * 5;
            int result2 = (24 + 5) % 7;
            float result3 = 15 + -4 * 6 / 11f; // Use 'f' for floating-point division
            int result4 = 2 + 10 / 6 * 1 - 7 % 2;

            // Display the results of the operations
            Console.WriteLine("The result of -1 + 3 * 5 is: " + result1);
            Console.WriteLine("The result of (24 + 5) % 7 is: " + result2);
            Console.WriteLine("The result of 15 + -4 * 6 / 11 is: " + result3);
            Console.WriteLine("The result of 2 + 10 / 6 * 1 - 7 % 2 is: " + result4);

            // 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

The result of -1 + 3 * 5 is: 14
The result of (24 + 5) % 7 is: 5
The result of 15 + -4 * 6 / 11 is: 14.0
The result of 2 + 10 / 6 * 1 - 7 % 2 is: 2

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

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