Forum: Java Nov 17th, 2008 |
| Replies: 4 Views: 1,828 In your BankAccount class create a getter that will return the bank account information.
public int[] getBankAccountInformation(){
return accountNumber;
}
and then when it is... |
Forum: Java Nov 14th, 2008 |
| Replies: 6 Views: 1,309 You want to sort the strings and then print them out to a file, so having your sortEm method return void doesn't make sense. Might want to actually return the String that is 'sorted'.
I would... |
Forum: Java Nov 12th, 2008 |
| Replies: 5 Views: 873 If that is all you want to do, it seems like creating your own exception is a waste of time. It would be easy to have the
1. printMenu
- get user input -
2. print appropriate message if menus... |