Overview of Formatted Output
Basics:The iostream header actually contains definitions for two types: istream and ostream.#include <iostream> // No .h extension
Output:std::cout << 15; // output the integer 15 std::cout << 3.14; // output the double 3.14 std::cout << "foo"; // output the NUL terminated string foo
Broken down into its parts (tokens):153.14foo
You can chain the operations together in a single statement:namespace scope-resolution-operator object insertion-operator value statement-terminator std :: cout << 15 ;
Obvious questions:// All in one statement std::cout << 15 << 3.14 << "foo";
struct TIME { int hours; int minutes; int seconds; }; struct TIME t1 = {9, 45, 30}; printf("%XXX", t1); // What format specifier is XXX? (Hint: There is none.) std::cout << t1; // Does this work? What will be printed?
Comparing printf with cout
Given these three variables:Using the defaults:int i = 42; float f = 1.23456789F; double d = 3.1415926535897932384626433832795;
When printing floating-point values:
printf cout printf("i is |%i|\n", i); printf("f is |%f|\n", f); printf("d is |%f|\n", d); Output: i is |42| f is |1.234568| d is |3.141593| std::cout << "i is |" << i << "|" << std::endl; std::cout << "f is |" << f << "|" << std::endl; std::cout << "d is |" << d << "|" << std::endl; Output: i is |42| f is |1.23457| d is |3.14159|
Another example:
Output:double d1 = 3.141; double d2 = 1234.5678; double d3 = 123456.987; printf("d1 is |%f|\n", d1); std::cout << "d1 is |" << d1 << "|" << std::endl; printf("d2 is |%f|\n", d2); std::cout << "d2 is |" << d2 << "|" << std::endl; printf("d3 is |%f|\n", d3); std::cout << "d3 is |" << d3 << "|" << std::endl;
d1 is |3.141000| d1 is |3.141| d2 is |1234.567800| d2 is |1234.57| d3 is |123456.987000| d3 is |123457|
Changing the default precision
Use the precision member to change the number of significant digits displayed for floating-point values.All of the subsequent floating-point values will be displayed to value significant digits.cout.precision(value);
Example:
float f = 123.4567F; double d = 3.1415926535897932384626433832795; // Modified precision (3, 6, 9, 12, etc.) for (int i = 3; i <= 21; i += 3) { std::cout << "precision is " << i << std::endl; std::cout.precision(i); std::cout << "f is |" << f << "|" << std::endl; std::cout << "d is |" << d << "|" << std::endl; std::cout << std::endl; }
GNU g++ Microsoft Borland Clang precision is 3 f is |123| d is |3.14| precision is 6 f is |123.457| d is |3.14159| precision is 9 f is |123.456703| d is |3.14159265| precision is 12 f is |123.456703186| d is |3.14159265359| precision is 15 f is |123.456703186035| d is |3.14159265358979| precision is 18 f is |123.456703186035156| d is |3.14159265358979312| precision is 21 f is |123.45670318603515625| d is |3.141592653589793116| precision is 3 f is |123| d is |3.14| precision is 6 f is |123.457| d is |3.14159| precision is 9 f is |123.456703| d is |3.14159265| precision is 12 f is |123.456703186| d is |3.14159265359| precision is 15 f is |123.456703186035| d is |3.14159265358979| precision is 18 f is |123.45670318603516| d is |3.1415926535897931| precision is 21 f is |123.45670318603516| d is |3.1415926535897931| precision is 3 f is |123| d is |3.14| precision is 6 f is |123.457| d is |3.14159| precision is 9 f is |123.456703| d is |3.14159265| precision is 12 f is |123.456703186| d is |3.14159265359| precision is 15 f is |123.456703186035| d is |3.14159265358979| precision is 18 f is |123.456703186035156| d is |3.14159265358979312| precision is 21 f is |123.4567031860351562| d is |3.141592653589793116| precision is 3 f is |123| d is |3.14| precision is 6 f is |123.457| d is |3.14159| precision is 9 f is |123.456703| d is |3.14159265| precision is 12 f is |123.456703186| d is |3.14159265359| precision is 15 f is |123.456703186035| d is |3.14159265358979| precision is 18 f is |123.456703186035156| d is |3.14159265358979312| precision is 21 f is |123.45670318603515625| d is |3.141592653589793116|
Changing the field width
Use the width member of the cout object to modify the width:The next value displayed will require at least value characters in the output. (Like printf, if the size of value is smaller than the number of characters required to display the value, the output will not be truncated.)cout.width(value);
Unlike precision, the new width specification will only be applied to the next output operation before being reset. (Meaning that it will only apply to one << operation.)
Default right justified:
int i = 42; float f = 1.23456789F; double d = 3.141592653589793238426433832795;
Another example:
printf cout // Set the width (default right justified) printf("i is |%12i|\n", i); printf("f is |%12f|\n", f); printf("d is |%12f|\n", d); printf("\n"); Output: (spaces are shown with a ·) i is |··········42| f is |····1.234568| d is |····3.141593| // Set the width (default right justified) std::cout << "i is |"; std::cout.width(12); std::cout << i; std::cout << "|" << std::endl; std::cout << "f is |"; std::cout.width(12); std::cout << f; std::cout << "|" << std::endl; std::cout << "d is |"; std::cout.width(12); std::cout << d; std::cout << "|" << std::endl; Output: (spaces are shown with a ·) i is |··········42| f is |·····1.23457| d is |·····3.14159|
// Set width to 10 std::cout << "|"; std::cout.width(10); std::cout << "setw(10)"; std::cout << "|" << std::endl; |
// Set width to 15 std::cout << "|"; std::cout.width(15); std::cout << "setw(15)"; std::cout << "|" << std::endl; |
// Set width to 20 std::cout << "|"; std::cout.width(20); std::cout << "setw(20)"; std::cout << "|" << std::endl; |
|··setw(10)| |·······setw(15)| |············setw(20)|
Padding with characters other than a space
Use the fill member of the cout object to modify the fill character:Any padding that is added will use fill-char instead of the default space.cout.fill(fill-char);
Executing this once before using cout:
This will output something different:std::cout.fill('*');
// Set width to 10 std::cout << "|"; std::cout.width(10); std::cout << "setw(10)"; std::cout << "|" << std::endl; |
// Set width to 15 std::cout << "|"; std::cout.width(15); std::cout << "setw(15)"; std::cout << "|" << std::endl; |
// Set width to 20 std::cout << "|"; std::cout.width(20); std::cout << "setw(20)"; std::cout << "|" << std::endl; |
Output: |**setw(10)| |*******setw(15)| |************setw(20)|
Using setf for More Control
The setf member controls many aspects of the format.Refer to tables 17.1 and 17.2 in the textbook for more information. These notes just scratch the surface of all of the functionality is provides.
Outupt:double cost = 22.5; // $22.50 bool flag = true; // Default formatting for floating point: cost is 22.5 std::cout << "cost is " << cost << std::endl; // Show trailing zeros: cost is 22.5000 std::cout.setf(std::ios_base::showpoint); std::cout << "cost is " << cost << std::endl; // Only 4 digits: cost is 22.50 (trailing zeros still in effect) std::cout.precision(4); std::cout << "cost is " << cost << std::endl; // Fixed-point, 2 digits to the right: cost is 22.50 std::cout.setf(std::ios_base::fixed); std::cout.precision(2); std::cout << "cost is " << cost << std::endl; // Default formatting for boolean: flag is 1 std::cout << "flag is " << flag << std::endl; // Display true/false instead of 1/0: flag is true std::cout.setf(std::ios_base::boolalpha); std::cout << "flag is " << flag << std::endl;
cost is 22.5 cost is 22.5000 cost is 22.50 cost is 22.50 flag is 1 flag is true
printf cout // Set the width, left justified printf("i is |%-12i|\n", i); Output: i is |42 | // Set the width, left justified std::cout << "i is |"; std::cout.width(12); std::cout.setf(std::ios_base::left); std::cout << i; std::cout << "|" << std::endl; std::cout.width(12); Output: i is |42 |
The above would turn off the boolalpha flag that was set by setf.std::cout.unset(std::ios_base::boolalpha);
Manipulators
Manipulators can be a more convenient way of formatting output. To use them, you must include another file:They work much the way some of the members work, including setf. In fact, they are just conveniences that call setf and unset behind the scenes.#include <iomanip> // No .h extension
Examples:
Output:int i = 42; float f = 1.23456789F; double d = 3.141592653589793238426433832795; std::cout << std::setprecision(3) << " f is |" << std::setw(6) << f << "|\n"; std::cout << std::setprecision(5) << " d is |" << std::setw(8) << d << "|\n";
This long statement can be written in different ways:f is | 1.23| d is | 3.1416|
// One statement std::cout << std::setprecision(5) << " d is |" << std::setw(8) << d << "|\n";
// Individual statements std::cout << std::setprecision(5); std::cout << " d is |"; std::cout << std::setw(8); std::cout << d; std::cout << "|\n"; |
// One statement on several lines std::cout << std::setprecision(5) << " d is |" << std::setw(8) << d << "|\n"; |
// Unacceptable formatting std::cout << std::setprecision(5) << " d is |" << std:: setw(8) << d << "|\n"; |
More examples:
Some of the standard manipulators are shown in table 17.3 in the textbook.
// One statement across several lines std::cout << std::setprecision(5) << " d is |" << std::setfill('-') << std::left << std::fixed << std::setw(10) << d << "|\n"; Output: d is |3.14159---| // One statement across several lines std::cout << std::hex << std::uppercase << " i is |" << std::setfill('#') << std::left << std::setw(10) << std::showbase << i << "|\n"; Output: i is |0X2A######|
More information on manipulators.
Overview of Input
Basics:Example:#include <iostream> // No .h extension
Sample runs:int i; float f; double d; char s[10]; // Prompt user and read input std::cout << "Enter an int: "; std::cin >> i; std::cout << "Enter a float: "; std::cin >> f; std::cout << "Enter a double: "; std::cin >> d; std::cout << "Enter a string: "; std::cin >> s; // Display the input std::cout << i << std::endl; std::cout << f << std::endl; std::cout << d << std::endl; std::cout << s << std::endl;
Enter an int: 45 Enter a float: 3.14 Enter a double: 3.18888889 Enter a string: digipen 45 3.14 3.18889 digipen |
Enter an int: 10 Enter a float: 23.45 Enter a double: .8798 Enter a string: Supercalifragilistic 10 23.45 0.879761 Supercalifragilistic |
Enter an int: 10 Enter a float: 23.45 Enter a double: .87987898 Enter a string: Supercalifragilisticexpialidocious 1869177711 1.72236e+22 7.8795e+199 Supercalifragilisticexpialidocious |
// Prompt user and read input std::cout << "Enter an int, float, double, string: "; std::cin >> i >> f >> d >> s;