#include #include using namespace std; int main() { double d = 1.2346589; cout << setfill('-') << setprecision(3) << fixed << setw(7) << left << d << "#" << endl; cout << setprecision(5) << d << "@" << endl; return 0; }