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);
}
}
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);
}
}