public class Car { private String make; private String model; private int year; // Constructor public Car(String make, String model, int year) { this.make = make; this.model = model; this.year = year; }
public void setModel(String model) { this.model = model; } 5.6.7 Car Class Codehs
// Setter for make public void setMake(String newMake) { make = newMake; } // Setter for model public void setModel(String newModel) { model = newModel; } public class Car { private String make; private