Java Program - Pattern 4

                *
            * * *
        * * * * *
    * * * * * * *
* * * * * * * * *


The following is the code.

package com;

public class JavaProgram
{
public static void main(String args[])
    {
        int i, j, k=16, tim=1;
        for(i=0; i<5; i++)
        {
            for(j=0; j<k; j++)
            {
                System.out.print(" ");
            }
            k = k - 4;
            for(j=0; j<tim; j++)
            {
                System.out.print("* ");
            }
            tim = tim + 2;
            System.out.println();
        }
    }
}

No comments:

Post a Comment

What is Normalization?

Database normalization is a data design and organization process applied to data structures based on rules that help building relational dat...