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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more