SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
56
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- $input = 7;
- for ($i=0; $i< $input; $i++) {
- for($j=0; $j< $input; $j++) {
- $min = ($i < $j) ? $i : $j;
- $max = ($i > $j) ? $i : $j;
- if(($i + $j) < $input) {
- echo $min + 1;
- } else {
- echo $input - $max;
- }
- }
- echo '<br>';
- }
- Output:
- 1111111
- 1222221
- 1233321
- 1234321
- 1233321
- 1222221
- 1111111
RAW Paste Data

