The line about the father (third line) must match the conditions.
although output looks correct to 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 grandFatherName = reader.readLine();
Cat catGrandfather = new Cat(grandFatherName);
String grandMotherName = reader.readLine();
Cat catGrandMother = new Cat(grandMotherName);
String fatherName = reader.readLine();
Cat catFather = new Cat(fatherName, catGrandfather);
String motherName = reader.readLine();
Cat catMother = new Cat(motherName, catGrandMother );
String sonName = reader.readLine();
Cat catSon = new Cat(sonName, catFather, catMother);
String daughterName = reader.readLine();
Cat catDaughter = new Cat(daughterName, catFather, catMother);
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 Cat parentF;
private Cat parentM;
Cat(String name) {
this.name = name;
}
Cat(String name, Cat parent) {
this.name = name;
if((parent. name).contains("Father") || (parent. name).contains("father"))
this.parentF = parent;
else
this.parentM = parent;
}
Cat(String name, Cat parentF, Cat parentM) {
this.name = name;
this.parentF = parentF;
this.parentM = parentM;
}
@Override
public String toString() {
if (parentF == null && parentM == null)
return "The cat's name is " + name + ", no mother, no father ";
else if(parentF != null && parentM == null)
return "The cat's name is "+ name +", no mother, " + parentF.name + " is the father";
else if(parentF == null && parentM != null)
return "The cat's name is "+ name + ", "+ parentM.name + " is the mother, no father";
else
return "The cat's name is " + name + ", " + parentM.name + " is the mother, "+parentF.name+" is the father";
}
}
}