Results 1 to 3 of 3
- 05-08-2011, 10:32 PM #1
Member
- Join Date
- May 2011
- Posts
- 1
- Rep Power
- 0
Compile Error (decimal rounding attempt)
I am having a problem while trying to get user input data from a textField to a variable. The users are inputting numbers, most of which are declared as double. I found an example on the Internet where the programmer turned the values into strings but when I try to recreate this I get 3 compile errors saying "Can not find symbol
Symbol: method roundToDecimals(double, int)"
Java Code:public void buildGUI () { Toolkit theKit = aWindow.getToolkit(); // Call the toolkit // use the called toolkit to get the screen size Dimension wndSize = theKit.getScreenSize(); // Set the position to screen center & size to half screen size aWindow.setBounds(wndSize.width/4, wndSize.height/4, 350, 200); // Tells the program to stop running whent the program is exited aWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // Tells the program to display the window aWindow.setVisible(true); String loanAmountS = Double.toString(roundToDecimals(loanAmount,2)); loanAmountInput.setText(loanAmountS); String interestS = Double.toString(interest); interestInput.setText(interestS); String loanTermS = Integer.toString(loanTerm); loanTermInput.setText(loanTermS); String paymentAmountS = Double.toString(roundToDecimals(payment,2));; paymentAmountOutput.setText(paymentAmountS); //*** Remaining Code***// }
- 05-08-2011, 10:58 PM #2
- Join Date
- Jan 2011
- Location
- Richmond, Virginia
- Posts
- 3,069
- Blog Entries
- 3
- Rep Power
- 7
Mind copy/pasting the exact errors?
- 05-08-2011, 11:13 PM #3
Similar Threads
-
Got an error when enter the number in decimal eg 30.23
By Neera in forum New To JavaReplies: 3Last Post: 01-01-2011, 02:36 AM -
I have Compile error but I couldn't fix it
By Wishes in forum New To JavaReplies: 25Last Post: 11-26-2010, 06:30 PM -
rounding double to two decimal places
By javaMike in forum Advanced JavaReplies: 15Last Post: 03-10-2010, 12:04 AM -
java division and decimal error
By heartysnowy in forum New To JavaReplies: 5Last Post: 10-07-2009, 04:57 PM -
Compile Error - Please Help!!
By AJ2009 in forum New To JavaReplies: 10Last Post: 01-04-2009, 03:59 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks