https://github.com/zipcodecore/currencyconverter
https://github.com/zipcodecore/currencyconverter
corejava corejava-chapter4 corejava-chapter5
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zipcodecore/currencyconverter
- Owner: ZipCodeCore
- Created: 2017-10-04T01:34:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T15:21:41.000Z (about 2 years ago)
- Last Synced: 2025-04-15T21:14:56.260Z (8 months ago)
- Topics: corejava, corejava-chapter4, corejava-chapter5
- Language: Java
- Size: 67.4 KB
- Stars: 1
- Watchers: 0
- Forks: 43
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wu-Tang Financial
Fork this repository and submit the URL of your fork via the Student Portal.
* **Objective** - to implement a `CurrencyConverter` capable of identifying exchange rates between any two arbitrary types of currency
* **Purpose** - to demonstrate use of
* object orientation
* enums
## Instructions
* Create a program that can convert between different currencies without loss of universal value.
### Exchange Rates
| Currency | Rate |
|----------|------|
| Universal Currency | 1.00 |
| Us Dollar | 2.00 |
| Euro | 1.88 |
| British Pound | 1.64 |
| Indian Rupee | 136.64 |
| Australian Dollar | 2.70 |
| Canadian Dollar | 2.64 |
| Singapore Dollar | 2.86 |
| Swiss Franc | 2.02 |
| Malaysian Ringgit | 8.94 |
| Japanese Yen | 231.68 |
| Chinese Yuan Renminbi | 13.84 |
## Food for thought
* Consider the following:
* 1 Euro is 1.88 Universal Currency
* 1 US Dollar is 2.00 Universal Currency
* 1 US Dollar is 0.94 Euro
# Planning and Execution:
Make sure your program passes the unit tests.
* make sure your last commit, after you have finished, is labelled `finished`
* are you getting what needs to be done at the end of the lab?
* don't overthink this. it's just a way for us to see that you're getting it.