Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. function isEqual($a, $b)
  4. {
  5.     $a = count_chars($a, 3);
  6.     $b = count_chars($b, 3);
  7.  
  8.     return strcmp($a, $b) === 0;
  9. }
  10.  
  11. for ($i = 1; ; $i++) {
  12.     if (isEqual($i, $i * 2)
  13.         && isEqual($i, $i * 3)
  14.         && isEqual($i, $i * 4)
  15.         && isEqual($i, $i * 5)
  16.         && isEqual($i, $i * 6)
  17.     ) {
  18.         echo $i;
  19.         break;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement