Tech Study

C# Program to perform all arithmetic operations

Introduction :

arithmetic operations

C# Program to perform all arithmetic operations. This program is compiled and tested on a Visual Studio 2012.

using System;

namespace TechStudyCSharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int num1;
            int num2;
            int sum, sub, mult, mod;
            float div;

            Console.WriteLine("Enter first number :");
            num1 = Convert.ToInt32( Console.ReadLine());
            Console.WriteLine("Enter second number :");
            num2 = Convert.ToInt32(Console.ReadLine());

            sum = num1 + num2;
            sub = num1 - num2;
            mult = num1 * num2;
            mod = num1 % num2;
            div = (float)num1 / num2;

            Console.WriteLine("\nSum of number1 and number2 : " + sum);
            Console.WriteLine("Difference of number1 and number2 : "+ sub);
            Console.WriteLine("Product of number1 and number2 : " + mult);
            Console.WriteLine("Modulus of number1 and number2 : " + mod);
            Console.WriteLine("Quotient of number1 and number2 : " + div);
            Console.ReadKey();
        }
    }
}

Result

C# Program to perform all arithmetic operations
C# Program for  arithmetic operations

To know more about c# visit these links :

C# Program to Convert Base64 to Byte Array

C# Program to convert days to years, weeks and days

TaggedC++ Program to perform all arithmetic operations

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more