Saturday, October 15, 2016

Sum of Two Numbers in C# Using Console

A very simple program that I wrote using Microsoft C# programming language that will accept two integer input values from the user and then our program will add the sum of the two input values using console environment in C#.

Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com. 


My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com. 

My mobile number here in the Philippines is 09173084360.




Sample Program Output

Program Listing

add.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace add
{
    class Program
    {
        static void Main(string[] args)
        {
            int a, b, sum;
            Console.Write("Sum of Two Numbers in C# Using Console");
            Console.Write("\n\n");
            Console.Write("Enter the first number : ");
            a = Convert.ToInt32(Console.ReadLine());
            Console.Write("Enter second number : ");
            b = Convert.ToInt32(Console.ReadLine());
            sum = a + b;
            Console.Write("\n\n");
            Console.WriteLine("The sum of {0} and {1} is {2}.", a,b,sum);
            Console.Write("\n\n");
            Console.Write("End of Program");
            Console.ReadLine();
        }
    }
}







No comments:

Post a Comment