https://github.com/amssdias/calculator_algorithm
Calculator without using addition, subtraction, multiplication and division operators and directly.
https://github.com/amssdias/calculator_algorithm
algorithm oop
Last synced: 3 months ago
JSON representation
Calculator without using addition, subtraction, multiplication and division operators and directly.
- Host: GitHub
- URL: https://github.com/amssdias/calculator_algorithm
- Owner: amssdias
- Created: 2021-01-17T23:37:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-17T23:51:21.000Z (over 4 years ago)
- Last Synced: 2025-01-13T19:24:41.419Z (5 months ago)
- Topics: algorithm, oop
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PYTHON Calculator Algorithm
I have built a Calculator without using addition, subtraction, multiplication and division operators (`+`, `-`, `*` and `/`) directly.
It was only based on the `Addition.add()` function from the `addition` module.This Class have 4 methods, each for each operation:
* `Calculator.add()`
* `Calculator.subtract()`
* `Calculator.multiply()`
* `Calculator.divide()`