Q:

C# Program to Swap Values of Two Variables.

0

C# Program to Swap Values of Two Variables.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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();
        }
    }
}

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

total answers (1)

C# Program to Multiply two Floating Point Numbers... >>
<< C# program to add two numbers...