daily pastebin goal
40%
SHARE
TWEET

Untitled

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