Use integer variables x and y to specify the field width and precision used to display the double value 87.4573, and display the value.
What will be an ideal response?
```
cout << setw(x) << setprecision(y) << 87.4573;
```
Computer Science & Information Technology
You might also like to view...
A method is invoked by a .
a) return statement b) method header c) method call d) None of the above.
Computer Science & Information Technology
You cannot create columns within a text object.? ____________________
Answer the following statement true (T) or false (F)
Computer Science & Information Technology