Cita:
Iniciado por Gott Tienes que modificar el for que tienes y haces así
Código C++:
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;
}
que le puedo modificar ??