Please help me.
package com.codegym.task.task06.task0621;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*
Cat relations
*/
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String grandFather = reader.readLine();
Cat catGrandFather = new Cat(grandFather);
String grandMother = reader.readLine();
Cat catGrandMother = new Cat(grandMother);
String father = reader.readLine();
Cat catFather = new Cat(father, grandFather);
String mother = reader.readLine();
Cat catMother = new Cat(mother, grandMother);
String son = reader.readLine();
Cat catSon = new Cat(son, mother, father);
String daughter = reader.readLine();
Cat catDaughter = new Cat(daughter, mother, father);
System.out.println(catGrandFather);
System.out.println(catGrandMother);
System.out.println(catFather);
System.out.println(catMother);
System.out.println(catSon);
System.out.println(catDaughter);
}
public static class Cat {
private String name;
private String father;
private String mother;
Cat(String name) {
this.name = name;
}
Cat(String name, String father) {
this.name = name;
this.father = father;
}
Cat(String name, String mother, String father) {
this.name = name;
this.father = father;
this.mother = mother;
}
@Override
public String toString() {
if (father == null && mother == null)
return "The cat's name is " + name + ", no mother " + ", no father ";
else if(father != null && mother == null)
return "The cat's name is " + name + ", no mother " + ", " + father + " is the father";
else if(father == null && mother != null)
return "The cat's name is " + name +", " + mother + " is the mother" + ", no father";
else
return "The cat's name is " + name +", " + mother + " is the mother" + ", " + father + " is the father";
}
}
}