C# program to demonstrate an example of arithmetic operators

Example:

    Input:
    int a = 10;
    int b = 3;

    //operations
    int sum = a + b;
    int sub = a - b;
    int mul = a * b;
    float div = (float)a / (float)b;
    int rem = a % b;

    Output:
    sum = 13
    sub = 7
    mul = 30
    div = 3.333333
    rem = 1

C# code to demonstrate the example of arithmetic operators:

// C# program to demonstrate example of 
// arithmetic operators 
using System;
using System.IO;
using System.Text;

namespace JustTechReview
{
    class Test
    {
        // Main Method 
        static void Main(string[] args)
        {
            int a = 10;
            int b = 3;

            int sum = a + b;
            int sub = a - b;
            int mul = a * b;
            float div = (float)a / (float)b;
            int rem = a % b;

            Console.WriteLine("Addition of {0} and {1} is = {2}", a, b, sum);
            Console.WriteLine("Subtraction of {0} and {1} is = {2}", a, b, sub);
            Console.WriteLine("Multiplication of {0} and {1} is = {2}", a, b, mul);
            Console.WriteLine("Division of {0} and {1} is = {2}", a, b, div);
            Console.WriteLine("Remainder of {0} and {1} is = {2}", a, b, rem);

            //hit ENTER to exit the program
            Console.ReadLine();
        }
    }
}

Output:

Addition of 10 and 3 is = 13
Subtraction of 10 and 3 is = 7
Multiplication of 10 and 3 is = 30
Division of 10 and 3 is = 3.333333
Remainder of 10 and 3 is = 1

Leave a Comment

error: Alert: Content is protected!!