All pastes #1339610 Raw Edit

crippler

public cpp v1 · immutable
#1339610 ·published 2009-02-17 01:58 UTC
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;}