Still need a little help on this program I'm making
Here's the link: https://code.sololearn.com/c9KwbA5EqgOk/#java Alright, still need a little help on this program. I've decided to try to add in passwords. That's working fine but I don't know if that's how I should implement passwords, especially in a program like this. Not only that, there is still some improvements that still need to be made here. 1. I need this program to support more than one account at one time. Like, if the user says he wants to access an existing account, he exits out, and then he says he wants to add in a new account while keeping data from the old account simultaneously. How can I make it so the user can add as many accounts as he wants? Obviously, the user isn't going to have like 100 accounts with a bunch of data each. So, maybe it's reasonable to have a cap on there, but I don't know. I don't know what I'm doing. 2. I don't know how to use files in Java. I learned about it but it's a bit confusing on how to use it and call it and store data in them. 3. The password and password validation thing I decided to add in still needs some refinement. I don't know if I should just make the passwords include any character or restrict it to a 4-pin number kinda how real banks ask you. But, I don't know how to make the program check to see if the password is only numbers and doesn't include letters and see if it's the size of 4 numbers. I don't know. I want to hear from those who actually know what they're doing and help me complete my first real "project".