Guest User

Untitled

a guest
Jul 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. <?
  2. $total = 0;
  3. $i = 0;
  4.  
  5. for( $i = 1; $i <= 1000; $i++ )
  6. {
  7. if( $i % 3 == 0 && $i % 5 == 0)
  8. {
  9. $total += $i;
  10. }
  11. }
  12.  
  13. print $total;
  14. ?>
Add Comment
Please, Sign In to add comment