- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
package com.javarush.test.level06.lesson11.bonus02;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/* Нужно добавить в программу новую функциональность
Задача: У каждой кошки есть имя и кошка-мама. Создать класс, который бы описывал данную ситуацию. Создать два объекта: кошку-дочь и кошку-маму. Вывести их на экран.
Новая задача: У каждой кошки есть имя, кошка-папа и кошка-мама. Изменить класс Cat так, чтобы он мог описать данную ситуацию.
Создать 6 объектов: маму, папу, сына, дочь, бабушку(мамина мама) и дедушку(папин папа).
Вывести их всех на экран в порядке: дедушка, бабушка, папа, мама, сын, дочь.
Пример ввода:
дедушка Вася
бабушка Мурка
папа Котофей
мама Василиса
сын Мурчик
дочь Пушинка
Пример вывода:
Cat name is дедушка Вася, no mother, no father
Cat name is бабушка Мурка, no mother, no father
Cat name is папа Котофей, no mother, father is дедушка Вася
Cat name is мама Василиса, mother is бабушка Мурка, no father
Cat name is сын Мурчик, mother is мама Василиса, father is папа Котофей
Cat name is дочь Пушинка, mother is мама Василиса, father is папа Котофей
*/
public class Solution
{
public static void main(String[] args) throws IOException
{
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String grfatherName = reader.readLine();
Cat catGrfather = new Cat(grfatherName);
String grmotherName = reader.readLine();
Cat catGrmother = new Cat(grmotherName);
String fatherName = reader.readLine();
Cat catFather = new Cat(fatherName, catGrfather, null);
String motherName = reader.readLine();
Cat catMother = new Cat(motherName, null, catGrmother);
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(catGrfather);
System.out.println(catGrmother);
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 father;
private Cat mother;
Cat(String name)
{
this.name = name;
}
Cat (String name, Cat father, Cat mother){
this.name = name;
this.mother = mother;
this.father = father;
}
@Override
public String toString()
{
if ((mother == null) && (father == null))
return "Cat name is " + name + ", no mother, no father ";
else if (father == null)
return "Cat name is " + name + ", mother is " + mother.name + " , no father";
else if (mother == null)
return "Cat name is " + name + ", no mather " + ", father is " + father.name;
else
return "Cat name is " + name + ", mother is " + mother.name + ", father is " + father.name;
}
}
}
Да лаба, точнее задание. Но меня так умиляет решение задачи :) Просто немного хардкода :)
bormand 15.05.2014 17:08 # +1
kostoprav 15.05.2014 17:25 # 0
gEKA6PbCKuu_nemyx 22.12.2021 12:10 # 0
Voittamaton 15.05.2014 18:34 # 0
Lure Of Chaos 16.05.2014 12:19 # 0
но студентота ниасилила и toString() написала шикарный.
Lure Of Chaos 16.05.2014 12:30 # 0
кто не помнит, походу вот крестореализация: http://tehtv.ru/RANUX/urok-35-c-kit-ili-kot/
помню, еще в журналах на васике писалась. эту реализацию не нашел, но нашел описалово: http://twt.mpei.ac.ru/ochkov/128/#_Toc472068246