Quick actions

cmd+k|ctrl+k

Navigation

Languages

Conditional Example 1

Snippet info

Language

Java

Visibility

public

Author

doug

Created

2016-07-20T19:24:39Z

Updated

2016-07-20T19:24:39Z

class Main {
    public static void main(String[] args) {
        int x = 99;
        int y = 10;
        
        if(x > y){
        	System.out.println("x is greater than y!");
        }
    }
}
INFO