#include #include #include using namespace std; int main(){ double d = 3.12345678; cout << d << endl << scientific << d << endl << fixed << setprecision(10) << setfill('#') << setw(18) << d << endl; }