Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $suma = 0;
  5.  
  6.  
  7. for($x = 1; $x <= 5 ; $x += 2)
  8. {
  9. $suma += $x;
  10. }
  11.  
  12. echo "suma ".$suma;
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement