
Patrick B. answered 11/07/20
Math and computer tutor/teacher
using namespace std;
//THESE HEADERS ARE REQUIRED !!!!!
#include <iostream>
#include <iomanip>
int main()
{
double flAmt = -550.987654321234;
//16 digits of precision
cout << fixed << setprecision(16) << flAmt << endl;
}
Sia B.
thank you very much, I appreciate it.11/11/20