import java.util.Scanner;
class Day {
private String work;
public void set(String work) {
this.work=work;
}
public String get() {
return work;
}
public void show() {
if(work ==null)System.out.println("없습니다.");
else System.out.println(work="입니다.");
}
}
class MonthSchedule {
Day d[];
MonthSchedule(int day){
d=new Day[day];
for(int i =0; i<d.length; i++)
d[i] = new d(i);
}
void run() {
Scanner in = new Scanner(System.in);
System.out.println("이번달 스케쥴 관리 프로그램.");
System.out.println("(입력:1, 보기:2, 끝내기:3) >>");
int a = in.nextInt();
}
public static void main(String[] args) {
MonthSchedule april = new MonthSchedule(30);
april.run();
}
}