java實現一元多項式相加

項的類java   package demo; //一元多項式的項 public class term { //係數 int coef; //指數 int expn; public term() { } public term(int coef, int expn) { this.coef = coef;
相關文章
相關標籤/搜索