« All Events
6 PM – Intro To Java
August 3, 2021 @ 6:00 pm - 7:00 pm
Homework
- Continue with the BankAccount exercises we did in the class
-
1. Insert all three bank accounts into accountMap, the key would be social security.
// Use for loop to go through each element inside the List
// And inside the for loop add the bank account one by one to the map.
2. Ask an input from shell for a social security
3. if the input from shell exists in the map, print out the bank account info "Name - Social Security - Balance"
4. If you don't find it then just print, the Social Security does not exists in our system.