/////// JointAccount.java /////// class JointAccount extends Account // extending Account { public JointAccount (int n, double b, String owner, String jowner) { super(n, b, owner); jss = jowner; } public JointAccount() {} private String jss; }