#include #include using namespace std; int main() { float myInt = 9.875; cout << setw(1) << "54321" << endl; cout << "\"" << setw(7) << "54321" << "\"" << endl; cout << "\"" << setw(7) << setprecision(2) << myInt << "\"" << endl; }