import java.util.Scanner; /** * YOUR NAME Program 4, Making Change, Comp 110 * * Implementation Plan - Grow your program one small step at a time. * 0. Request user to enter price. * 1. Read in price of item (print it out to check that * it was correctly read - always label your output). * 2...... You take it from here * * Test Plan * Idea - the vending machine may dispense 0, 1, 2 or 3 quarters. 0, 1 or 2 dimes. * 0 or 1 nickels. We choose test cases to (independently) verify each of these. * * Tests * price change q d n * 25 75 3 0 0 * ...... you fill in this table with the remaining tests. 6-8 tests are appropriate */ public class MakeChange { public static void main(String[] args) { System.out.println("Enter price of item"); System.out.print("(from 25 cents to a dollar, in 5-cent increments): "); // .... add your code here }