Skip to content

Instantly share code, notes, and snippets.

@derjust
Created February 11, 2019 00:09
Show Gist options
  • Save derjust/e7ce7312fa3aed29366a668e95fe1f43 to your computer and use it in GitHub Desktop.
Save derjust/e7ce7312fa3aed29366a668e95fe1f43 to your computer and use it in GitHub Desktop.
package assignment2;
public class ParkingMeter {
private int maxParkingInMinutes;
/** rate as in minutes per quarter */
private int rate;
private int time;
public ParkingMeter(int pMaxParkingInMinutes, int pRate) {
maxParkingMinutes = pMaxParkingInMinutes;
rate = pRate;
time = 0;
}
public void insertQuarter() {
time = time + rate;
}
public int checkRemainingTime() {
return time;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment