摘要: #一、有理数类代码 public class Rational { private int numerator;//分子 private int denominator;//分母 public Rational() { this(0,1); } //构造函数 public Rational(long 阅读全文
posted @ 2020-10-04 02:28 林毅() 阅读(98) 评论(0) 推荐(0) 编辑