Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The program is supposed to swap numbers, but I am stuck something is wrong! It d

ID: 3555102 • Letter: T

Question

The program is supposed to swap numbers, but I am stuck something is wrong! It does not swap them it repeats the second number, please help to fix! Thanks, this is in C++.

Code Below:

// This program takes two values from the user and then swaps them
// before printing the values. The user will be prompted to enter
// both numbers.


#include <iostream>
using namespace std;

int main()
{
     float firstNumber;
     float secondNumber;

     // Prompt user to enter the first number.
     cout << "Enter the first number" << endl;
     cout << "Then hit enter" << endl;
     cin >> firstNumber;

     // Prompt user to enter the second number.
     cout << "Enter the second number" << endl;
     cout << "Then hit enter" << endl;
     cin >> secondNumber;

     // Echo print the input.
     cout << endl << "You input the numbers as " << firstNumber << " and " << secondNumber << endl;

     // Now we will swap the values.
     firstNumber = secondNumber;
     secondNumber = firstNumber;

     // Output the values.
     cout << "After swapping, the values of the two numbers are " << firstNumber << " and " << secondNumber << endl;
     return 0;
}

Explanation / Answer

Please find below correct code:

// This program takes two values from the user and then swaps them
// before printing the values. The user will be prompted to enter
// both numbers.


#include <iostream>
using namespace std;

int main()
{
float firstNumber;
float secondNumber;
float temp;

// Prompt user to enter the first number.
cout << "Enter the first number" << endl;
cout << "Then hit enter" << endl;
cin >> firstNumber;

// Prompt user to enter the second number.
cout << "Enter the second number" << endl;
cout << "Then hit enter" << endl;
cin >> secondNumber;

// Echo print the input.
cout << endl << "You input the numbers as " << firstNumber << " and " << secondNumber << endl;

// Now we will swap the values.

temp=firstNumber;
firstNumber = secondNumber;
secondNumber = temp;

// Output the values.
cout << "After swapping, the values of the two numbers are " << firstNumber << " and " << secondNumber << endl;
return 0;
}