Übungsbesprechung aus Kapitel1

Übung3:

Eine typische Lösung sah so aus:
#include <stream.h>
const int N=10;
main()
{
 int i,j;
 for(i=1;i<=N;i++)
        {for(j=1;j<=N;j++)
                {if(j*i<10) cout << " ";
                 cout << " " << j*i;
                }
         cout << "\n";
        }
}
man vergleiche mit der eignen Lösung.
Last update: 26-Nov-99