dettol (1) 썸네일형 리스트형 컴퓨터랑 자바로 대화할 수 있는 지경에 이르렀다 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.. 이전 1 다음