摘要: 账户 Account类 1 package day1_11.exer2; 2 3 //账户 4 public class Account { 5 private double balance;//余额 6 7 public Account(double balance) { 8 this.balan 阅读全文
posted @ 2021-01-11 23:28 dog_IT 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 账户 Account类 1 package day1_11; 2 //银行账户 3 public class Account { 4 private int id; //账号 5 private double balance;//余款 6 private double annualInterestR 阅读全文
posted @ 2021-01-11 01:02 dog_IT 阅读(132) 评论(0) 推荐(0) 编辑