Quick actions

cmd+k|ctrl+k

Navigation

Languages

star pyramid

Snippet info

Language

Java

Visibility

public

Author

sibasisrath2000

Created

2025-11-25T14:59:16.32447Z

Updated

2025-11-25T18:15:05.443801Z

class Main {
    public static void main(String[] args) {
        int row = 5;
        for(int i = 0; i < row; i++){
            for(int j = row; j > i; j--){
                System.out.print(" ");
            }
            for(int j = 1; j <= (i*2)+1; j++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}
INFO