// Arup Guha
// 4/9/2016
// Framework for 2009 AP Computer Science A
// Free Response Section Problem 3: BatteryCharger

public class BatteryCharger {

	private int[] rateTable = {50,60,160,60,80,100,100,120,150,150,150,200,40,240,220,220,200,200,180,180,140,100,80,60};

	// Really, nothing to do here...
	public BatteryCharger() {
	}

	// Fill this in for Part A.
	private int getChargingCost(int startHour, int chargeTime) {


	}

	// Fill this in for Part B.
	public int getChargeStartTime(int chargeTime) {


	}

	public static void main(String[] args) {

		// Mostly a dummy object; gives us access to the table...
		BatteryCharger b = new BatteryCharger();

		// Print out the best start time for each distinct duration.
		for (int i=1; i<24; i++)
			System.out.println("The best start time for charging "+i+" hours is "+b.getChargeStartTime(i));

	}
}
