Java quick pickup

Posted by Chester Lab on July 7, 2025
public class Car {
	String model; 
	int year;

   // Constructor
   public Car(String model, int year){
	   this.model = model;
	   this.year = year;
   }

	public void displayDetails(){
		System.out.println("model: " + model);
	}

	

}