Showing posts with label print stars in plus pattern. Show all posts
Showing posts with label print stars in plus pattern. Show all posts

Thursday, 20 July 2017

Print Stars in plus(+) pattern

public class For {
public static void main(String[] args) {
    for(int i=1;i<=5;i++){
        System.out.println("        *");
    }
    for(int i=1;i<=10;i++){
        System.out.print("*"+" ");
    }System.out.println();
    for(int i=6;i<=10;i++){
        System.out.println("        *");
    }
}
}


OUTPUT:
        *
        *
        *
        *
        *
* * * * * * * * * *
        *
        *
        *
        *

        *