Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2. /* Najprostsze rozwiązanie */
  3. $from = 876;
  4. $to = 243;
  5. for ($x = $from; $x>=243; $x--){
  6.     if (!($x%5)){
  7.         echo "($x),";
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement