#include using namespace std; int main() { float f = 89.76543; cout.setf( ios::left ); cout.width( 10 ); cout << "monday"; cout << endl; cout.setf( ios::fixed ); cout.precision( 2 ); cout << f; cout << endl; }