
/** put your documentation for this class here
	See Style Guild for format
*/
public class ISPCharge
{
	private char packageCode;
	private double hours;
	
	// declare your constants here.  They should use the private
	// visibility modifier. 
	
	/**************************************************** 
	 *	The constructor sets the package and hours attributes.
	 * @param pkg The code for the package, A, B, or C
	 * @param hours The number of hours this month
	 */
	 public ISPCharge(char pkg, double hrs)
	 {
	 }
	
	/************************************************
	 * calc charge will decide which package to apply
	 * and will return the correct cost.
	 *
	 * @return The charges for this month.
	 */
	public double calcCost()

	
	/************************************************
	 * calcA calculates the charges for package A
	 *
	 * The rest is left for you to fill in....
	 */
	 public double calcA()
	 // put the calcA method here
	 
	 /************************************************
	 * calcB calculates the charges for package B
	 *
	 * The rest is left for you to fill in....
	 */
	 public double calcB()
	 // put the calcB method here
	 
	 
	 /************************************************
	 * calcC calculates the charges for package C
	 *
	 * The rest is left for you to fill in....
	 */
	 public double calcC()
	 // put the calcC method here
	 
	 
	 /** calcTax calculates the tax on the passed charge
	  *
	  * The rest is left for you to fill in....
	  */
	  public double calcTax()
	  // put the calcTax method here
	  
	  /*************************************************
	   * toString describes this charge.  It should include the 
		* package for this charge and the hours.
		*
		* the rest is left for you to fill in....
		*/	  
		public String toString()
		
		// put the toString method here
}