In this csharp tutorial we add two numbers
First we take two numbers and store them in variables
Then we show the result in output
For this we use console readline and console write line
Program :
using System; namespace CsharpPrograms { class Program { static void Main(string[] args) { int x; int y; int result; Console.Write("\n Enter the first number to be added: "); x=Convert.ToInt32(Console.ReadLine()); Console.Write("\n Enter the second number to be added: "); y = Convert.ToInt32(Console.ReadLine()); result = x + y; Console.Write("\n The sum of two numbers is: "+result); Console.ReadLine(); } } }
Output:
0 comments:
Post a Comment