Untitled 2
Untitled 2
class Car
{
public Car(string model, int year, double price, bool isDrivable = true)
{
this.year = year;
this.model = model;
this.price = price;
this.isDrivable = isDrivable;
return ($"The model of the car is {model} of {year} year with the price of
${price} and the drivability of car is {isDrivable}.");
}
}
class Cars
{
}
}