Showing posts with label PHP Program to print Alphabet Pattern K. Show all posts
Showing posts with label PHP Program to print Alphabet Pattern K. Show all posts

Sunday, May 26, 2024

PHP Program to print Alphabet Pattern K

  PHP Program to print Alphabet Pattern K

PHP Program to print Alphabet Pattern K

 Q.  What is Alphabet Pattern?

     1]  Alphabet Patterns   is a series of letters arranged in a specific order or shape. 

     2] There are many type of paper patterns  (such as  triangles, squares , circles formed                             ,B,C,d   arranging letters..etc).

     3]   They can also be used creatively in typography.
   

PHP Program to print alphabet Pattern K

Program

<?php
echo "<pre>";
$j=7;
$i =0;
 for($row =0; $row<=10; $row++)
 {
    for($col=0;$col<=10;$col++)
    {
        if($col==1 or (($row == $col +3)
        AND $col !=0))
    {
        echo "k";
    }
    else if($row == $i AND $col == $j)
    {
        echo "k";
        $i = $i+1;
        $j = $j-1;
    }
    else{
        echo "&nbsp;";
    }
    }
    echo "<BR>";

    }
    echo "</pre>";
    ?>
Output


RELATED POSTS:-

PHP Program to print alphabet pattern Q

PHP Program to print Alphabet Pattern R

PHP Program to print Alphabet Pattern P

PHP Program to print Alphabet Pattern A

PHP Program to print Alphabet Pattern G

PHP Program to print Alphabet Pattern O