
Draw staircase structure (Left side elevated triangle) problem-1
Staircase structure (Left side elevated triangle)
You need to draw a staircase structure i.e. triangle structue which is elevated to left side. It seems to be stand as right angle triangle.
 
Input
Input is given integer N,consider it the height of staircase
Output
Print staircase with symbol '*' and spaces.
*
* *
* * *
* * * *
Solution
<?php$n=6;
for($i=1;$i<=$n;$i++) {
for($j=1;$j<=$n;$j++) {
if($j<=$i) {
echo '*';
}
else {
echo ' ';
}
if($j==$n) {
echo PHP_EOL;
//echo '<br />';
}
}
}
We need your support to operate it properly. We have lots of ideas but less fund, so help us with your funding.
A perfection of means, and confusion of aims, seems to be our main problem
Do you want to sell products online with no extra cost?
Send your details, our executive will contact you