//import java.util.*;
//
//class TV{
// String name;
// int year;
// int inc;
//
// void show() {
// System.out.println(name+"에서"+" "+"만든"+" "+year+"년형"+" "+inc+"인치"+" "+"TV");
// }
//
// TV(String n, int y, int i){
// name=n;
// year=y;
// inc=i;
// }
//
//
//
//}
//
//
//class Main{
// public static void main(String[] args) {
// TV myTV=new TV("LG",2017,32);
// myTV.show();
//
// }
//}
//
//import java.util.*;
//class Grade{
// int mc;
// int sc;
// int ec;
//
// Grade(int m,int s,int e)
// {
// mc=m;
// sc=s;
// ec=e;
// }
//
// int average() {
//
// return (mc+sc+ec)/3;
//
//
// }
//}
//
//
//class Main{
// public static void main(String[] args) {
//
// Scanner sc=new Scanner(System.in);
//
// System.out.print("수학, 과학, 영어 순으로 3개의 점수 입력>>");
// int math = sc.nextInt();
// int science=sc.nextInt();
// int english=sc.nextInt();
// Grade me= new Grade(math, science, english);
// System.out.println("평균은 "+me.average());
//
// sc.close();
//
//
//
// }
//}
//
//import java.util.*;
//class Song{
// String title;
// String artist;
// int year;
// String country;
//
//
// Song(String t,String a, int y,String c){
// title=t;
// artist=a;
// year=y;
// country=c;
// }
//
//
// void show() {
// System.out.println(year+"년 "+country+"국적의 "+artist+"가 부른 "+title);
// }
//}
//
//class Main{
// public static void main(String[] args) {
// Song sg = new Song("Dancing queen","ABBA",1978,"스웨덴");
// sg.show();
// }
//}
//
//import java.util.*;
//class Rectangle{
// int x;
// int y;
// int width;
// int height;
//
// Rectangle(int xasd,int yasd,int w, int h)
// {
// x=xasd;
// y=yasd;
// width=w;
// height=h;
//
// }
// int square() {
// return width*height;
//
// }
//
// void show(){
// System.out.println("("+x+","+y+")"+"에서 크기가 "+width+"x"+height+"인 직사각형");
// }
//
// boolean contains(Rectangle r)
// {
// if(r.y>y&&r.y+r.height<y+height&&r.x>x&&r.x+r.width<x+width)
// {
// return true;
// }
// else
// {
// return false;
// }
//
// }
//
//}
//
//
//
//class Main{
// public static void main(String[] args) {
// Rectangle r = new Rectangle(2,2,8,7);
// Rectangle s = new Rectangle(5,5,6,6);
// Rectangle t = new Rectangle(1,1,10,10);
//
// r.show();
// System.out.println("s의 면적은 "+s.square());
// if(t.contains(r)) System.out.println("t는 r를 포함");
// if(t.contains(s)) System.out.println("t는 s를 포함");
//
// }
//}
//import java.util.*;
//
//
//class Circle{
// private double x,y;
// private int radius;
// public Circle(double x, double y,int radius) {
// this.x=x;
// this.y=y;
// this.radius=radius;
// }
//
// void show()
// {
// System.out.println("("+x+","+y+")"+radius);
// }
//
//}
//
//class Main{
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// Circle c []=new Circle[3];
// for(int i=0;i<3;i++)
// {
// System.out.print("x,y,radius >>");
// double x=sc.nextDouble();
// double y=sc.nextDouble();
// int radius=sc.nextInt();
// c[i]=new Circle(x,y,radius);
//
// }
// for(int i=0;i<c.length;i++) c[i].show();
// sc.close();
//
//
//
//
// }
//}
//
//import java.util.*;
//class Circle{
// double x,y;
// int radius;
// Circle(double x, double y,int radius) {
// this.x=x;
// this.y=y;
// this.radius=radius;
//}
//
//
// void show() {
// System.out.println("("+x+","+y+")"+radius);
// }
//
//
//
//}
//class Main{
//public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// Circle c []=new Circle[3];
// for(int i=0;i<3;i++)
// {
// System.out.print("x,y,radius >>");
// double x=sc.nextDouble();
// double y=sc.nextDouble();
// int radius=sc.nextInt();
// c[i]=new Circle(x,y,radius);
//
// }
// int max=0;
// int maxi=4;
// for(int i=0;i<3;i++)
// {
// if(c[i].radius>max)
// {
// max=c[i].radius;
// maxi=i;
// }
// }
// c[maxi].show();
//
// sc.close();
//
//
//
//
//}
//}
import java.util.*;
class Day{
private String work;
void set(String work) {this.work=work;}
String get() {return work;}
void show() {
if(work==null) System.out.println("없습니다.");
else System.out.println(work+"입니다");
}
}
class MonthSchedule{
int days;
Scanner sc=new Scanner(System.in);
Day d []=new Day[31];
public MonthSchedule(int days) {
this.days=days;// TODO Auto-generated constructor stub
for(int i=0;i<days;i++) {
d[i] = new Day();
}
}
void run() {
System.out.println("이번달 스케쥴 관리 프로그램.");
System.out.print("할일(입력:1, 보기:2, 끝내기:3 >>");
int num=sc.nextInt();
if(num==1) input();
}
void input() {
System.out.println("날짜(1~30)?");
int innum=sc.nextInt();
System.out.println("할일(빈칸없이입력)?");
String inwork=sc.nextLine();
d[innum].set(inwork);
}
}
class Main{
public static void main(String[] args) {
MonthSchedule april = new MonthSchedule(30);
april.run();
}
}