Browse Source

typos

content-update
OGordoo 3 years ago committed by Christopher Fremond
parent
commit
54f65c4832
  1. 19
      subjects/atm_management_system/README.md

19
subjects/atm_management_system/README.md

@ -2,7 +2,7 @@
### Objective
The objective for this projects is to show, that you have learned to program and you are able to adapt to new languages.
The objective for this project is to show that you have learned to program and you are able to adapt to new languages.
The programming language you are about to use is [C](https://en.wikipedia.org/wiki/C_%28programming_language%29). It will not be asked to create
a project from scratch, but **to add features or fix the code of a given application**.
@ -13,11 +13,11 @@ You will be provided with an ATM management system where users can do the follow
- Login/Register
- Create a new account
- Update information of existing account
- Update information of existing accounts
- Check the details of existing accounts
- Check list of owned account
- Make transaction
- Remove existing account
- Check list of owned accounts
- Make transactions
- Remove existing accounts
The application provided will just handle the **login**, **creation of new accounts** and **check list of owned accounts**. The rest of the features must
be implemented by you.
@ -71,18 +71,19 @@ The following features must be done by you.
1. **Registration**, you must be able to register new users, it cannot exist users with the same name (names must be unique). They must be saved into the right file
2. **Update information of existing account**, users must be able to update their country or phone number\
2. **Update information of existing account**, users must be able to update their country or phone number
2.1. You must ask users to input the account id they want to change, followed by a prompt asking which field they want to also change (the only fields that are permitted to update is the phone number and the country).
2.2. When ever users update an account it must be then saved into the corresponding file.
2.2. Whenever users update an account, it must be saved into the corresponding file.
3. **Check the details of existing accounts**, users must able to check just one account.
3. **Check the details of existing accounts**, users must be able to check just one account at a time.
3.1. For this it must be asked to input the account id they want to see
3.2. If the account is either saving, fixed01, fixed02 and fixed03 the system will display
the information of that account and the interest you will acquire depending on the account:
- saving: rate interest 0.07%
- fixed01(1 year account): rate interest 0.04%
- fixed02(2 year account): rate interest 0.05%
@ -116,7 +117,7 @@ You can create bonus features or update the terminal interface:
This project will help you learn about:
- [C](https://en.wikipedia.org/wiki/C_%28programming_language%29) languages
- [C](https://en.wikipedia.org/wiki/C_%28programming_language%29) language
- Language Fundamentals
- Data manipulation
- File [stdino](TODO:link)

Loading…
Cancel
Save