I'm designing a very basic Object-Oriented program in netbeans using java, but I'm stuck, I just wonder if anyone could help me....?
Created Accounts:
ACC NUM NAME BALANCE
246246 James Taylor 100
123123 Chris Smith 0
I created two new accounts using the values above and returned them to the class constructor but I’m stuck on how to retrieve the information back.
For example:
Acc Number: 123123
*** Welcome ***
Chris
Your balance is: 0
Or/and
Acc Number: 101010
*** Sorry no account found ****
Also: -
After that I wish to allow the use to enter the amount they wish to withdraw or deposit for that particular account.
Is this possible?
Any help will be very much appreciated!
Thanks
Chris
Created Accounts:
ACC NUM NAME BALANCE
246246 James Taylor 100
123123 Chris Smith 0
I created two new accounts using the values above and returned them to the class constructor but I’m stuck on how to retrieve the information back.
For example:
Acc Number: 123123
*** Welcome ***
Chris
Your balance is: 0
Or/and
Acc Number: 101010
*** Sorry no account found ****
Also: -
After that I wish to allow the use to enter the amount they wish to withdraw or deposit for that particular account.
Is this possible?
Any help will be very much appreciated!
Thanks
Chris