Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/03/2011, 00:48
Gott
 
Fecha de Ingreso: febrero-2011
Ubicación: Paraguay
Mensajes: 59
Antigüedad: 13 años, 2 meses
Puntos: 1
Respuesta: Ayuda con c++ con tablas de multiplicar

Tienes que modificar el for que tienes y haces así
Código C++:
Ver original
  1. for (i=1; i<=10; i++) {
  2.     cout << "TABLA DEL " << i << endl;
  3.     for (j=1; j<= 10; j++) {
  4.         cout << i << " x " << j << " = " << i * j << endl;
  5.     }
  6.     cout << endl;
  7. }