Sunday, April 25, 2021

Arithmetic Operators in C#

 In this article I would like to share about arithmetic operators in C# programming languages. I hope you will find my work useful.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com





Program Listing

using System;


namespace Aritmetic_Operators

{

    class Program

    {

        static void Main(string[] args)

        {


            // Arithmetic Operators in C#


            // Jake Rodriguez Pomperada,MAED-IT, MIT


            // www.jakerpomperada.com  


            // www.jakerpomperada.blogspot.com


            // jakerpomperada@gmail.com


            // Bacolod City, Negros Occidental Philippines

            int a = 40;

            int b = 6;


            int sum = a + b;

            int sub = a - b;

            int mul = a * b;

            float div = (float)a / (float)b;

            int rem = a % b;

            

            Console.WriteLine("\n\n");

            Console.WriteLine("\tArithmetic Operators in C#");

            Console.WriteLine("\n");

            Console.WriteLine("\tThe Addition of {0} and {1} is = {2}", a, b, sum);

            Console.WriteLine("\tThe Subtraction of {0} and {1} is = {2}", a, b, sub);

            Console.WriteLine("\tThe Multiplication of {0} and {1} is = {2}", a, b, mul);

            Console.WriteLine("\tThe Division of {0} and {1} is = {2}", a, b, div);

            Console.WriteLine("\tThe Remainder of {0} and {1} is = {2}", a, b, rem);

            Console.WriteLine("\n");

            Console.WriteLine("\tEnd of Program");

            Console.ReadLine();

        }

    }

}



No comments:

Post a Comment