Results 1 to 5 of 5
Thread: user input program
- 10-27-2011, 11:18 PM #1
Member
- Join Date
- Oct 2011
- Posts
- 2
- Rep Power
- 0
user input program
hi
im new to java and i have a question about the following program. basically, i want to get the user input and show and output on the screen, however, the input dialogue doesn't show and i dont know why??
thanks in advanceJava Code:package math; import javax.swing.JOptionPane; public class NewClass { int PIN = 1234; double account_number; double beg_bal = 1000.0; String user_name; public static void main (String[] args){ new NewClass(); } public double deposit(String amount){ double a; amount = JOptionPane.showInputDialog("Enter the amount to deposit: "); a = Double.parseDouble(amount); beg_bal = beg_bal + a; System.out.println("Your new balance is:\n"); JOptionPane.showMessageDialog(null,"Your new balance is:"+ beg_bal,"Results",JOptionPane.PLAIN_MESSAGE); System.exit(0); return (beg_bal); } public double withd_transfer(String amount){ double b; amount = JOptionPane.showInputDialog("Enter the amount to withdraw/transfer: "); b = Double.parseDouble(amount); beg_bal = beg_bal + b; System.out.println("Your new balance is:\n"); return (beg_bal); } }
-
Re: user input program
Where do you call the deposit or withd_transfer methods? Your main only calls the NewClass constructor -- where's you code for that?
- 10-27-2011, 11:44 PM #3
Re: user input program
all your code does is create a NewClass (please use better names in future) object and then ends. When do you call any methods?
- 10-28-2011, 03:58 AM #4
Member
- Join Date
- Oct 2011
- Posts
- 2
- Rep Power
- 0
- 10-28-2011, 04:07 AM #5
Similar Threads
-
User Input???
By jonytek in forum New To JavaReplies: 8Last Post: 01-13-2013, 02:52 PM -
Need help getting input(first/last name) from user
By nightrise420 in forum New To JavaReplies: 11Last Post: 09-11-2010, 03:09 AM -
How do I write to an existing file in Java with a program that asks for user input?
By gmoney8316 in forum New To JavaReplies: 13Last Post: 04-16-2010, 02:51 AM -
how to get input from User
By Alvaro in forum New To JavaReplies: 7Last Post: 01-15-2010, 11:02 PM -
User input- Pop Up Box
By dedachi in forum AWT / SwingReplies: 3Last Post: 03-23-2009, 04:47 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks