03/03/2015

C++Program To Swap A Number Without Using Third Variable

Problem :- Write A Program To Swap A Number Without Using Third Variable

Logic :- Swapping A two Number without Using Third Variable Is A simple logic that i am Explaining below .

Example :- a=10 And b=20 .

Step 1:- first add both number like a=a+b so a value is 30.

Step 2:- Now sub-struct b=a-b so b value is 10.

Step 3:- Finally a=a-b so 30-10=20 so a value is 20.

finally Number is swap .

Solution :-

#include <iostream>
using namespace std;

int main()
{
    int first,second;
    
cout<<"Enter The First And Second Variable :\n\n";
    cin>>first>>second;
    
first=first+second;
    second=first-second;
    first=first-second;
    
cout<<"\nFirst Number is = "<<first<<"\nSecond Number Is = "<<second<<endl;
    return 0;

}

Output:-

C++Program To Swap A Number Without Using Third Variable

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: