Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <html>
  2. <body>
  3. <form action="Matei_Cozac.php" method="post">
  4. Citire:<input type="value" name="$n" />
  5. <input type="submit">
  6. </form>
  7. $nr2=0;
  8. $nr5=0;
  9. $i=0 ;
  10. $x=0;
  11.  
  12. for ($i=1; $i<=$n; $i++)
  13. {$x=$i;
  14. while ($x%2==0)
  15. {$x/=2;
  16. $nr2++;
  17. }
  18. while ($x%5==0)
  19. {$x/=5;
  20. $nr5++;
  21. }
  22. }
  23. if ( $nr5 < $nr2 ) print $nr5;
  24. else print $nr2;
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement