Quick actions

cmd+k|ctrl+k

Navigation

Languages

left handed right angled triangle

Snippet info

Language

Java

Visibility

public

Author

sibasisrath2000

Created

2025-11-25T15:12:25.305728Z

Updated

2025-11-25T15:15:41.085023Z

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