Ver originalfor (i=1; i<=10; i++) { cout << "TABLA DEL " << i << endl; for (j=1; j<= 10; j++) { cout << i << " x " << j << " = " << i * j << endl; } cout << endl;}