Skip to content

Instantly share code, notes, and snippets.

@bishwanathjha
Created October 17, 2016 12:49
Show Gist options
  • Save bishwanathjha/16144788981495417478b1d17d77aa52 to your computer and use it in GitHub Desktop.
Save bishwanathjha/16144788981495417478b1d17d77aa52 to your computer and use it in GitHub Desktop.
<?php
function StairCase($n) {
for($i = 1; $i <= $n; $i++) {
for($j = $n; $j >= 1; $j--) {
echo ($j <= $i) ? "#" : " ";
}
echo "\n";
}
}
Output:
#
##
###
####
#####
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment