In this tutorial, I will explain how to add two numbers using the c# programming language with an example and output. At the end of this program, I have shared the screenshot of program output.
Copy the below c# program and execute it in your Microsoft Visual Studio IDE (Integrated Development Environment ).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | static void Main(string[] args) { Console.WriteLine("Addition of two Numbers"); Console.WriteLine("***********************"); Console.WriteLine("Enter First Number"); int first = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter Second Number"); int second = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Addition of " + first + " + " + second + " = " + Convert.ToString(first + second)); Console.ReadLine(); } |
Liked this tutorial? Do Like & share with your friends 🙂
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.
Article Tags: add two number in csharp, addition of two numbers in c#, how to add two numbers in asp net using c#, how to add two numbers using generics in c#