Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvitoralb/bank-app
A command line app that simulates a bank built with Java.
https://github.com/jvitoralb/bank-app
Last synced: about 1 month ago
JSON representation
A command line app that simulates a bank built with Java.
- Host: GitHub
- URL: https://github.com/jvitoralb/bank-app
- Owner: jvitoralb
- Created: 2023-05-28T19:20:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-30T02:24:35.000Z (over 1 year ago)
- Last Synced: 2024-11-11T11:47:41.443Z (3 months ago)
- Language: Java
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bank App
### This is a command-line bank simulator application.
This app simulates a bank with basic operations: `Withdraw` and `Deposit`. Also, it allows to create multiple accounts
and save them in a list.
It was built using only Java, meaning the app doesn't have a database connection, so all data is lost after the app is
closed. I may be adding a database connection later on.When the application starts it shows this menu:
`1 - Criar conta`
Creates an account and it only requires a name.`2 - Acessar conta`
If you want to log in to your account. It requires the account number.`3 - Sair do programa`
Closes the application.
`1 - Sacar`
Allows you to withdraw the money.`2 - Depositar`
This option allows you to Deposit into your account.`3 - Saldo`
Shows the account's balance.`4 - Extrato`
Here you can consult the account's transaction logs.`5 - Sair`
Logs out of the account.