Not sure why all conditions that involve parents are failing. Could be cause it's late but I don't see anything out of place. The output is correct as well
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 catGrandpa = new Cat(grandfatherName);
String grandmotherName = reader.readLine();
Cat catGrandma = new Cat(grandmotherName);
String motherName = reader.readLine();
Cat catMother = new Cat(motherName, catGrandma, null);
String fatherName = reader.readLine();
Cat catFather = new Cat(fatherName, null, catGrandpa);
String sonName = reader.readLine();
Cat catSon = new Cat(sonName, catMother, catFather);
String daughterName = reader.readLine();
Cat catDaughter = new Cat(daughterName, catMother, catFather);
System.out.println(catGrandpa);
System.out.println(catGrandma);
System.out.println(catMother);
System.out.println(catFather);
System.out.println(catSon);
System.out.println(catDaughter);
}
public static class Cat {
public String name;
public Cat father;
public Cat mother;
Cat(String name) {
this.name = name;
}
Cat(String name, Cat mother, Cat father) {
this.name = name;
this.mother = mother;
this.father = father;
}
@Override
public String toString() {
if(mother == null && father == null)
return "The cat's name is " + name + ", no mother, no father";
else if (mother == null)
return "The cat's name is " + name + ", no mother, " + father.name + " is the father";
else if(father == null)
return "The cat's name is " + name + ", " + mother.name + " is the mother, no father";
else {
return "The cat's name is " + name + ", " + mother.name + " is the mother, " + father.name + " is the father";
}
}
}
}