C# Program to swap two numbers without using temporary variable

Problem

Write a program in Visual CSharp to swap two numbers using temporary variable and display the result in the console window.

How to swap two numbers in C# without using temporary variable ?

C#

Output

Abundantcode.com coding sample

Enter the First Number :

45

Enter the Second Number :

67

First Number is 67

Second Number is 45

Leave Your Comment