//class Song {
// String title;
// String artist;
// int year;
// String country;
//
// Song(){}
// public 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);
// }
//}
//
//
//public class Main{
// public static void main(String[] args) {
// Song s1 = new Song("Dancing Queen","ABBA",1978,"스웨덴");
// s1.show();
// }
//}
//class Song {
// String title;
// String artist;
//
// Song(){}
//
// void show() {
// System.out.println(artist+"가 부른 "+title);
// }
//}
//public class Main{
// Song s1 = new Song();
// s1.show();
// }
//}
class Book{
String title,author;
public Book(String title,String author) {
this.title = title;
this.author = author;
}
}
public class Rectangle {
int x;
int y;
int width;
int height;
public Rectangle(int x1,int y1, int w,int h) {
x=x1; y=y1; width=w; height =h;
}
public int square() {
return width*height;
}
void show() {
System.out.println("("+x+","+y+")"+"에서 크기가 "+width+"X"+height+"인 사각형");
}
boolean contains(Rectangle r) {
if(x<r.x &&x+width>r.x+r.width&&y<r.y&&y+height>r.y+r.height)
{
return true;
}
else return false;
}
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를 포함합니다.");
}
}