https://github.com/alphabetsalphabets/kalculator
It's calculator with a 'K'
https://github.com/alphabetsalphabets/kalculator
calculator lexical-analyzer rust rust-lang
Last synced: 3 months ago
JSON representation
It's calculator with a 'K'
- Host: GitHub
- URL: https://github.com/alphabetsalphabets/kalculator
- Owner: AlphabetsAlphabets
- Created: 2021-05-30T05:13:12.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T06:33:29.000Z (over 2 years ago)
- Last Synced: 2025-01-21T08:08:23.444Z (5 months ago)
- Topics: calculator, lexical-analyzer, rust, rust-lang
- Language: C++
- Homepage:
- Size: 278 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kalculator
A calculator made in C++ with operator precedence.# Limitations
1. The following expressions with parenthesis don't work.
- `1 + ((2^2)^2)`
- `((2^2)^2)`
2. Negatives. Such as `- 1 + 2`. The calculator will assume `-` as an `Operand`. This is due to the way things are set.
3. Decimal exponents don't work either.