吉童とチョルスの身長と体重を獲得
public class Human {
private String name;
private int height;
private int weight;
public Human(String name, int height, int weight) {
this.name = name;
this.height = height;
this.weight = weight;
}
public String getName() {
return name;
}
public int getheight() {
return height;
}
public int getWeight() {
return weight;
}
void gainWeight(int w) {
weight += w;
}
void reduceWeigth(int w) {
weight -= w;
}
}
public class HumanTester {
public static void main(String[] args) {
Human gildong = new Human("길동", 170, 60);
Human chulsu = new Human("철수", 166, 72);
gildong.gainWeight(3); //길동이 3키로 쪘다.
chulsu.reduceWeigth(5); //철수가 5키로 빠졌다.
System.out.println("이름 : " + gildong.getName());
System.out.println("키 : " + gildong.getheight() + "cm");
System.out.println("몸무게 : " + gildong.getWeight() + "kg");
System.out.println();
System.out.println("이름 : " + chulsu.getName());
System.out.println("키 : " + chulsu.getheight() + "cm");
System.out.println("몸무게 : " + chulsu.getWeight() + "kg");
}
}
References
Reference
この問題について(吉童とチョルスの身長と体重を獲得), 我々は、より多くの情報をここで見つけました https://velog.io/@withcolinsong/길동이와-철수의-신장과-체중구하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol