ad
Friday, May 31, 2024
php program to print inverted right half pyramid
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:-
Related Post:-
css column gap property
html iframe
php program palindrome number
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment