php program to print inverted right half pyramid
Example:-
<?php
for($i=0;$i<=5;$i++){
for($j=5-$i;$j>=1;$j--){
echo "* ";
}
echo "<br>";
}
?>
php program to print inverted right half pyramid
Output:-
Web Designing Theory is a web development learning blog where you can learn HTML, CSS, JavaScript, and modern web design tutorials step by step. Improve your coding skills with easy examples, projects, and beginner-friendly guides for frontend development.
Web Designing Theory – A Journey from Struggle to Web Development Success Sometimes students feel confused while learning coding and web d...
No comments:
Post a Comment