Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 9/AirPlain.java Lines 14 | 241 바이트
다운로드

                        package week10;

public class AirPlain {
	protected void land() {
		System.out.println("Land In");
	}
	protected void takeoff() {
		System.out.println("Hellow");
	}
	protected void fly() {
		System.out.println("Land Out");
	}
}