php program to print Alphabet pattern Z on June 02, 2024 Get link Facebook X Pinterest Email Other Apps php program to print Alphabet pattern ZExample :-<?phpfor($row=0; $row<7; $row++){ for ($column=0; $column<=7; $column++) { if((($row==0 or $row==6)and $column>=0 and $column<=6) or $row+$column==6) echo "*"; else echo " "; } echo "<br>";}?>php program to print Alphabet pattern ZOutput :-Related Post :-html element taghtml table bordercss introduction Comments
Comments
Post a Comment