create a program that will ask the user two numbers and then the program will display the original arrangements of the two numbers and also it will display the swap arrangement of two numbers on the screen
// Author: Mr jake R. pomperada, BSCS, MAED- IT
// Date: august 14, 2018 Tuesday
// Location: Bacolod City, Negros occidental
// Website: http://www.jakerpompereda.com
Here is my program:
int main()
{
int x;
int y;
cin >> x;
cin >> y;
cout << y << endl;
cout << x << endl;
}
Comments
Leave a comment