Custom Search

Friday, January 30, 2009

EXAMPLE 3

EXAMPLE # 3:-


using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int a, b, c;
string d;
Console.WriteLine("ENTER A FIRST NUMBER:");
a=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("ENTER A SECOND NUMBER:");
b=Convert.ToInt32(Console.ReadLine());
c = a + b;
d = Convert.ToString(c);
Console.WriteLine("RESULT");
Console.WriteLine(d);
}
}
}

No comments:

Post a Comment