불두화 2021. 5. 12. 17:27

이전까지 했던 책의 예제들 업로드합니다. 

감사합니다.

package ifexample;

public class ifExample1 {

	public static void main(String[] args) {
		int age = 7;
		if(age >= 8) {
			System.out.println("학교에 다닙니다.");
		}
		else {
			System.out.println("학교에 다니지 않습니다.");
		}

	}

}