0
0

More than 3 years have passed since last update.

Main.java

Posted at

class Main {
public static void main(String[] args) {
// 仕事を「医者」にしてください
Person person1 = new Person("Kate", "Jones", 27, 1.6, 50.0,"医者");
person1.printData();
// 仕事を「教師」にしてください
Person person2 = new Person("John", "Christopher", "Smith", 65, 1.75, 80.0,"教師");
person2.printData();
System.out.println("----------------------");
// person1の仕事を「獣医」に変更してください
person1.setJob("獣医");

// 「person1の仕事を◯◯に変更しました」と出力されるようにしてください
System.out.println("person1の仕事を"+person1.getJob()+"に変更しました");

person1.printData();

}
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0