// Program Introduction to User ...
cout << "\n\t ************************************************"
<< "\n\t * Simple program that calculates a Max Volume *"
<< "\n\t * cup-like container from ciruclar paper sheet *"
<< "\n\t * with a pie-shaped wedge cut out. *"
<< "\n\t ************************************************
<< "\n\n" << endl;
cout << fixed << showpoint << setprecision(6);
cout << "Enter the radius of the circular paper in inches: ";
cin >> PaperRad;
cout << endl;
x = 0.00;
removedSectorLength = 0.0;
PaperCircum = 2 * PI * PaperRad;
// Simple Hold Screen Code for Command Prompt C++ Compilers
char holdscr; // This character and section is to hold screen open
cout << "\n\n\tPress a character and Enter to exit program. ";
cin >> holdscr;
Sure, we can help you find the error, but so can your compiler.
24:4: warning: missing terminating " character
24:1: error: missing terminating " character
In function 'int main()':
25:1: error: expected primary-expression before '<<' token
27:45: error: 'setprecision' was not declared in this scope
33:1: error: 'x' was not declared in this scope
56:1: error: expected ';' before 'cout'