daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 56 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $input = 7;
  2.  
  3. for ($i=0; $i< $input; $i++) {
  4.   for($j=0; $j< $input; $j++) {
  5.      $min = ($i < $j) ? $i : $j;
  6.      $max = ($i > $j) ? $i : $j;
  7.      
  8.       if(($i + $j) < $input) {
  9.               echo $min + 1;
  10.       } else {
  11.               echo $input - $max;    
  12.       }
  13.   }
  14.   echo '<br>';
  15. }
  16.  
  17. Output:
  18.  
  19. 1111111
  20. 1222221
  21. 1233321
  22. 1234321
  23. 1233321
  24. 1222221
  25. 1111111
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top