#include using namespace std; int main() { double p = 3.1415927; cout << "p=" << p << endl; cout.setf( ios::fixed, ios::floatfield ); cout.precision( 10 ); cout << "p=" << p << endl; cout.setf( ios::right ); cout.width( 25 ); cout << "p=" << p << endl; cout.width( 10 ); cout << "monday"; cout.width( 10 ); cout << "tuesday"; cout.width( 10 ); cout << "wednesday"; cout << endl; cout.width( 10 ); cout << "1"; cout.width( 10 ); cout << "2"; cout.width( 10 ); cout << "3"; cout << endl; }