Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/11/2014, 08:33
Avatar de replica
replica
 
Fecha de Ingreso: noviembre-2004
Mensajes: 68
Antigüedad: 19 años, 6 meses
Puntos: 2
Respuesta: tabla de amorrtizacion

Código PHP:
Ver original
  1. <?php
  2. $var = 100;
  3. $fij = 2;
  4.  
  5. while($var>=$fij){
  6.  
  7. echo $var, " - ", $fij, " = ", $var-=$fij;
  8. echo "<br/>";
  9.  
  10. }
  11. ?>