/* * Author: * Date: * Purpose: */ public class Q1Program { public void start() { //Constants for the three different call //rates and the two different time blocks final double PER_TWENTY_MINUTES = 1.5; final double PER_FIVE_MINUTES = 0.5; final double PER_SINGLE_MINUTE = 0.12; final int TWENTY_MINUTES = 20; final int FIVE_MINUTES = 5; } }