Question: Complete the provided main() program with statements to accomplish each of the following. In each case you must use the appropriate I/O stream manipulators to
Complete the provided main() program with statements to accomplish each of the following. In each case you must use the appropriate I/O stream manipulators to produce the appropriate output wherever possible. Refer to the sample output below as a guide for proper output alignment.
- Output first first as an integer value, followed by a space, then in its written form.
- Output second as a base ten value, followed by a space, then as a hexadecimal value, followed by a space, then as an octal value. Make sure the appropriate base indicator prefix is shown in the output.
- Output third.
- Output fourth with four digits, with the sign shown at the left, and the value right aligned. The decimal point must also appear.
- Output fourth with four significant figures.
- Output fifth with seven significant figures. (Note: use left alignment here)
- Output fifth with three digits to the right of the decimal point.
- Output third.
- Output fourth with two digits to the right of the decimal point.
- Output sixth with no decimal portion showing
- Output fourth with eight digits to the right of the decimal point.
- Output sixth with six digits.
You must start your coding by using exactly the following program. You may not modify it, except to add the required code between the Solution starts, and Solution ends comments.
#include#include using namespace std; int main() { bool first; int second; long third; float fourth; float fifth; double sixth; cout << "Enter bool, int, long, float, float, and double values: "; cin >> first >> second >> third >> fourth >> fifth >> sixth; cout << endl; // ***** Solution starts here **** // ***** Solution ends here **** cin.get(); return 0; }
First one is:
cout << first << ' ' << boolalpha << first << endl;
Countinue.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
