rendered paste body#include <iostream>#include <fstream>using namespace std;int main(){ double a; double b; double c; char again; cout.setf(ios::fixed); cout.setf(ios::showpoint); cout << "This program will multiply any two numbers together" << endl; do { cout << "Enter the first number: "; cin >> a; cout << "\n"; cout << "Enter the second number: "; cin >> b; cout << "\n"; c = a * b; cout.precision(2); cout << "Your answer is: " << c << "\n"; cout << "\nDo you want to do another item (Y/N)? "; cin >> again; } while (again == 'y' || again == 'Y'); cout << "\nEnd of Program!" << endl; system("pause"); return 0;}