Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 11 Drill 2
Using std_lib_facilities.h by Bjarne Stroustrup.
[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PPP
// Chapter 11 Drill 2
#include "std_lib_facilities.h"
int birth_year = 1988;
int main()
try
{
cout << dec << birth_year << endl;
cout << hex << birth_year << endl;
cout << oct << birth_year << endl;
keep_window_open();
}
catch (runtime_error e) {
cout << e.what() << endl;
keep_window_open();
}
catch (…) {
cout << "Exiting" << endl;
keep_window_open();
}
[/code]
Output: 1988 7c4 3704 Please enter a character to exit