所以在我在你们的帮助下搞砸了它之后,我让它做一些我需要它做的事情
public class PolynomialTestDriver {
public static void main(String[] args){
Polynomial myPoly = new Polynomial();
myPoly.setCoefficient(6, 2);
myPoly.setCoefficient(9,3);
System.out.println(myPoly.getCoeff()+"x^"+myPoly.getDeg());
}
}
但是它只会打印出最后一个 myPoly.setCoefficient(); 它应该打印出来
2x^6+3x^9 但它只打印 3x^9