Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Swap two numbers

C++ Basic: Exercise-13 with Solution

Write a program in C++ to swap two numbers.

Pictorial Presentation:

C++ Exercises: Swap two numbers

Sample Solution :-

C++ Code :

#include <iostream>
using namespace std;
 
int main()
{
	cout << "\n\n Swap two numbers :\n";
	cout << "-----------------------\n";
	int num1, num2, temp;
	cout << " Input 1st number : ";
	cin >> num1 ;
	cout << " Input 2nd number : ";
	cin >> num2;	
	temp=num2;
	num2=num1;
	num1=temp;
    cout << " After swapping the 1st number is : "<< num1 <<"\n" ; 
    cout << " After swapping the 2nd number is : "<< num2 <<"\n\n" ; 	
}

Sample Output:

 Swap two numbers :                                                    
-----------------------                                                
 Input 1st number : 25                                                 
 Input 2nd number : 39                                                 
 After swapping the 1st number is : 39                                 
 After swapping the 2nd number is : 25

Flowchart:

Flowchart: Swap two numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to add two numbers accept through keyboard.
Next: Write a program in C++ to calculate the volume of a sphere.

What is the difficulty level of this exercise?