Print the value 333.546372 in a 15-character field with precisions of 1, 2 and 3. Print each number on the same line. Left-justify each number in its field. What three values print?

```
<< setprecision(1) << setw(15) << 333.546372
<< setprecision(2) << setw(15) << 333.546372
<< setprecision(3) << setw(15) << 333.546372 << endl;
```

333.5 333.55 333.546

Computer Science & Information Technology

You might also like to view...

________ is a technology that shows the result of applying an editing or formatting change as you point to possible results, before you actually apply it

A) Style Preview B) Live Preview C) Print Preview D) Theme Preview

Computer Science & Information Technology

Where can you store data such as an author's name, purpose of the file, and the intended audience, that won't be seen directly in the document?

A) Document Inspector B) Document Panel C) Print Preview features D) Compatibility Checker feature

Computer Science & Information Technology