C#.Net Program 3 : Swapping numbers or Swap numbers example
Program Explanation
C#.net Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharpExamples
{
class SwapNumbers
{
static void Main(string[] args)
{
int num1, num2, tempo; //declare
Console.Write("\\Please enter First Number : ");
num1 = int.Parse(Console.ReadLine());//reading first number
Console.Write("\\Please enter Second Number : ");
num2 = int.Parse(Console.ReadLine());//reading second number
tempo = num1;
num1 = num2;
num2 = tempo;
Console.Write("\nAfter Swapping : ");
Console.Write("\nFirst Number is: " + num1);
Console.Write("\nSecond Number is: " + num2);
Console.Read();
}
}
}
If you have any queries or suggestions, please feel free to ask in comments section.
Post a Comment
Please give your valuable feedback on this post. You can submit any ASP.NET article here. We will post that article in this website by your name.