Java Programming Tutorial – 10 – If Statement

By | 2015년 4월 1일

package hello;

public class apples {
    public static void main(String[] args) {
		int test =6;
		
		if(test>9){
			System.out.println("yes");
		}
		else{
			System.out.println("this is else");
		}
	}
};