class Car { String licensePlate; // e.g. "New York A456 324" double speed; // kilometers per hour double maxSpeed; // kilometers per hour // accelerate to maximum speed // put the pedal to the metal void floorIt() { this.speed = this.maxSpeed; }