Quick actions

cmd+k|ctrl+k

Navigation

Languages

Right handed Right angled triangle

Snippet info

Language

Java

Visibility

public

Author

sibasisrath2000

Created

2025-11-25T15:17:54.8874Z

Updated

2025-11-25T15:17:54.8874Z

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