Computer Science Canada Programming in JCreator Le |
Author: | shrim [ Mon May 21, 2012 1:35 pm ] |
Post subject: | 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(); } } |
Author: | Tony [ Mon May 21, 2012 3:09 pm ] |
Post subject: | RE:Programming in JCreator Le |
Good progress. Keep it up! |
Author: | shrim [ Tue May 22, 2012 6:40 am ] |
Post subject: | 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 |