Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/03/2011, 17:11
falkuto
 
Fecha de Ingreso: agosto-2010
Mensajes: 49
Antigüedad: 13 años, 8 meses
Puntos: 1
Respuesta: Ayuda con c++ con tablas de multiplicar

Cita:
Iniciado por Gott Ver Mensaje
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. }
que le puedo modificar ??