/**
 * FileName:     FindRoots.java
 * Description:  
 * Copyright:    Copyright (c) 2000
 * @author 	Ho Yin, Low
 * @version 1.0
 * FileNeeded: 	MyInput.class
 */

public class ComputeChange
{
  /**Main method*/
  public static void main(String[] args)
  {
    double value; // Declare a double variable
    
    // Calculate the root's value
    value = -6(Math.sqrt((Math.Pow(6,2)-4*(2*8))/(2*2)
 
    // Display the result
    System.out.println("The answer is " + value ");
    
  }
}

/**Test Case 01
 * @input: amount = 3.98
 * @output: 3 	dollars
 * @output: 3	quarters
 * @output: 2	dimes
 * @output: 0 	nickels
 * @output: 3 	pennies		
 */
 
/**Test Case 02
 * @input: amount = 11.56
 * @output: 11 	dollars
 * @output: 2	quarters
 * @output: 0	dimes
 * @output: 1 	nickels
 * @output: 1 	pennies		
 */
 
 /**Test Case 03
 * @input: amount = 12
 * @output: 12 	dollars
 * @output: 0	quarters
 * @output: 0	dimes
 * @output: 0 	nickels
 * @output: 0 	pennies		
 */
