1 /*C How to Program, 6/E, Deitel & Deitel.
3 Solution of exercise 4.18:
4 (Tabular Output) Write a C++ program that uses a while statement and the tab
5 escape sequence \t to print the following table of values:
15 Written by Juan Carlos Moreno (jcmhsoftware@gmail.com), 2023-01-19. */
25 cout
<< "N\t10*N\t100*N\t1000*N" << endl
<< endl
;
29 cout
<< N
<< "\t" << N
*10 << "\t" << N
*100 << "\t" << N
*1000 << endl
;