package mit16_410_13; public class Variable { String name; double coefficient; public Variable (String name, double coef) { this.name=name.intern(); coefficient=coef; } public String name () { return name; } public double getCoefficient () { return coefficient; } }