Quick actions

cmd+k|ctrl+k

Navigation

Languages

Reverse Number Triangle

Snippet info

Language

Java

Visibility

public

Author

sibasisrath2000

Created

2025-11-25T16:30:12.26339Z

Updated

2025-11-25T16:30:12.26339Z

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