Wednesday, August 15, 2018

Swap Two Numbers in C++

Here is the code that I wrote to ask the user to give two numbers and then our program will swap the arrangement of the two numbers using C++.

I am currently accepting programming work, it project, school 

programming projects , thesis and capstone projects, IT consulting 

work, computer tutorials and web development work kindly contact me in the following email address for further details.  If you want to advertise in my website kindly contact me also in my email address also. Thank you.
My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

My personal website is http://www.jakerpomperada.com



Sample Program Output

Program Listing


/ Author    : Mr. Jake R. Pomperada,BSCS,MAED-IT
// Date     : August 14, 2018   Tuesday
// Location : Bacolod City, Negros Occidental
// Website : http://www.jakerpomperada.com

#include <iostream>

using namespace std;

int main() {

 int a=0,b=0, temp=0;

 cout << "\n\n";
 cout << "\tSwap Two Numbers";
 cout << "\n\n";
 cout << "\tGive two integers: ";
 cin >> a >> b;

 cout <<"\n\n";
 cout <<"\tBefore Swapping";
 cout <<"\n\n";
 cout << "\ta = " << a << " and " << b <<"\n";

 temp = a;
 a = b;
 b = temp;

 cout <<"\n\n";
 cout <<"\tAfter Swapping";
 cout <<"\n\n";
 cout << "\ta = " << a << " and " << b <<"\n";
 cout << "\n\n";
 cout << "\tEnd of Program";
 cout << "\n\n";
 }


No comments:

Post a Comment