// Whois.java 1.2 클레스 만들기 class Whois { // 필드(Field) String name; // 이름 int age; // 나이 boolean marry; // 결혼 여부 int kids; // 자녀 수 // 생성자(Constructor) Whois(String name, int age, boolean marry, int kids) { this.name = name; this.age = age; this.marry = marry; this.kids = kids; } // 메소드(Method) public void print() { System.out.println("이름 : " + name); System.out.println("나이 : " + age); if (marry) {..