public class Polynomial { int degree; long[] coefficients; // Constructor public Polynomial(int deg) { this.degree = deg; this.coefficients = new long[deg + 1]; for (int i = 0; i < deg + 1; i++) { this.coefficients[i] = 0; } } public static Polynomial copy(Polynomial source) { Polynomial newPoly = new Polynomial(source.degree); for (int i = 0; i = 0; i--) { System.out.print(source.coefficients[i..