fork(3) download
  1. <?php
  2.  
  3. $parcelas=11;
  4.  
  5. $segredo = (1 + $parcelas) * (($parcelas) / 2);
  6.  
  7. $valor="R$ 1900,30";
  8.  
  9. $preco=trim(str_replace("R$","",$valor));
  10. $decimal= substr($preco,(strlen($preco)-3),strlen($preco));
  11. $preco=(str_replace($decimal,"",$preco));
  12.  
  13. for ($x = 1; $x <= ($parcelas-1); $x++) {
  14. $parcela = intval((($preco*$x)/$segredo));
  15. echo ("R$ ". number_format($parcela, 2, ',', '.'))."\n";
  16. $somatorio=$somatorio+$parcela;
  17. }
  18. $ultima=$preco-$somatorio;
  19. echo ("R$ ".($ultima.$decimal));
Success #stdin #stdout #stderr 0s 82880KB
stdin
Standard input is empty
stdout
R$ 28,00
R$ 57,00
R$ 86,00
R$ 115,00
R$ 143,00
R$ 172,00
R$ 201,00
R$ 230,00
R$ 259,00
R$ 287,00
R$ 322,30
stderr
PHP Notice:  Undefined variable: somatorio in /home/VylIst/prog.php on line 16