// Bjarne Stroustrup 1/15/2010 // Chapter 5 Exercise 11 /* write out Fibonacci numbers. Find the largest Fibonacci number that fits in an int */ #include "std_lib_facilities.h" /* Compute the series and note when the int overflows; the previous value was the largest that fit */ int main() try { int n = 1; int m = 2; while (n