Quick actions

cmd+k|ctrl+k

Navigation

Languages

Please Don't Do This

Snippet info

Language

Java

Visibility

public

Author

jordan.40au

Created

2018-07-02T18:16:27Z

Updated

2018-07-02T18:16:55Z

class Main {
    public static void main(String[] args) {
        int i = 3;
        
        if (i > 3)
        
        if (i > 2) {
            System.out.println("Greater than two!");
        } else {
            System.out.println("Less than or equal to two!");
        }
    }
}
INFO