//Member_02.java class Member_02 { private int no; private String name; private int max_hp; private int now_hp; void setNo(int arg_no){ /* 制限のない整数 */ no = arg_no; } void setName(String arg_name){ /* 制限のない文字列 */ name = arg_name; } void setMax_hp(int hp){ /* 初期HPは1以上 now_hp=max_hp */ max_hp = hp<1 ? 1 : hp; now_hp = max_hp; } void setNow_hp(int hp){ /* now_hpは0以上 max_hp以下 */ now_hp = hp; now_hp = max_hp