Guest User

Untitled

a guest
May 20th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. $arr = array();
  4. for ( $i = 1000; $i >= 0; $i-- )
  5. {
  6. if ( $i % 5 == 0 )
  7. {
  8. $arr[] = $i;
  9. }
  10. }
  11.  
  12. echo array_sum($arr);
  13. ?>
Add Comment
Please, Sign In to add comment