
-----------------------------------
shrim
Mon May 21, 2012 1:35 pm

Programming in JCreator Le
-----------------------------------
I have to program an application that i put in an attachment

So far for the program i added the First line
import java.util.Scanner;

public class Change {

    public static void main(String[] args) {
    	double first;

    	Scanner input = new Scanner(System.in);
    	System.out.print("Enter the change in cents:  ");
    	first = input.nextDouble();
    }


}

-----------------------------------
Tony
Mon May 21, 2012 3:09 pm

RE:Programming in JCreator Le
-----------------------------------
Good progress. Keep it up!

-----------------------------------
shrim
Tue May 22, 2012 6:40 am

RE:Programming in JCreator Le
-----------------------------------
I forgot to mention that would I have to use division to calculate the change in dimes and other small change
