Write a program that reads from the console three numbers of type int and prints their sum.

  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 the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.My mobile number here in the Philippines is 09173084360.

Program Listing

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

/* 
 * Write a program that reads from the console three numbers of type int and prints their sum. */


namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("\n\n");
            Console.Write("\tSum of Three Numbers in C#");
            Console.Write("\n\n");
            Console.Write("\tEnter First Number: ");
            int a = Int32.Parse(Console.ReadLine());
            Console.Write("\tEnter Second number: ");
            int b = Int32.Parse(Console.ReadLine());
            Console.Write("\tEnter Third number: ");
            int c = Int32.Parse(Console.ReadLine());
            Console.Write("\n");
            Console.WriteLine("\tThe sum of {0}, {1}, and {2} is {3}.",a,b ,c, (a + b + c));
            Console.Write("\n");
            Console.Write("\tEnd of Program");
            Console.ReadKey();
        }
    }
}