This program is compiled and tested on a Visual Studio 2012.
using System;
namespace TechStudyCSharp
{
class Program
{
static void Main(string[] args)
{
int num1;
int num2;
int temp;
Console.WriteLine("Type value of number 1 :");
num1 = Convert.ToInt32( Console.ReadLine());
Console.WriteLine("Type value of number 2 :");
num2 = Convert.ToInt32(Console.ReadLine());
temp = num1;
num1 = num2;
num2 = temp;
Console.WriteLine("\nAfter swapping values");
Console.WriteLine("Value of number 1 : "+ num1);
Console.WriteLine("Value of number 2 : "+ num2);
Console.ReadKey();
}
}
}
This program is compiled and tested on a Visual Studio 2012.
Result:
ype value of number 1 :
24
Type value of number 2 :
33
After swapping values
Value of number 1 : 33
Value of number 2 : 24
need an explanation for this answer? contact us directly to get an explanation for this answer