1 /* C++ How to Program, 9/E, by Paul Deitel & Harvey Deitel.
3 Solution of exercise 2.22:
4 What does the following code print?
6 cout << "*\n**\n***\n****\n*****" << endl;
8 Written by Juan Carlos Moreno (jcmhsoftware@gmail.com), 2022/01/03 */
16 cout
<< "*\n**\n***\n****\n*****" << endl
;