Example
ncout << "|" << setw(10)
n   << setiosflags(ios::fixed)
n         << setprecision(4)
n         << 123.89
n         << "|" << endl;
n|  123.8900|
n
n