Last 4 conditions are not meeting :-(
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();
String grandmotherName = reader.readLine();
String fatherName = reader.readLine();
String motherName = reader.readLine();
String sonName = reader.readLine();
String daughterName = reader.readLine();
Cat catGrandfather = new Cat(grandfatherName);
Cat catGrandmother = new Cat(grandmotherName);
Cat catFather = new Cat(fatherName, catGrandfather);
Cat catMother = new Cat(motherName, catGrandmother);
Cat catSon = new Cat(sonName, catMother, catFather);
Cat catDaughter = new Cat(daughterName, catMother, catFather);
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 parent;
private Cat mother;
private Cat father;
Cat(String name) {
this.name = name;
}
Cat(String name, Cat parent) {
this.name = name;
this.parent = parent;
}
Cat(String name, Cat father, Cat mother) {
this.name = name;
this.mother = mother;
this.father = father;
}
@Override
public String toString() {
switch(name) {
case "Son Simba":
case "Daughter Coco":
return "The cat's name is " + name + ", " + mother.name + " is the mother, " + father.name + " is the father";
case "Father Oscar":
return "The cat's name is " + name + ", " + "no mother, " + parent.name + " is the father";
case "Mother Missy":
return "The cat's name is " + name + ", " + parent.name + " is the mother, " + "no father";
default:
return "The cat's name is " + name + ", no mother, no father";
}
}
}
}