This is a simple calculator based on an earlier class project in C. I have a quiz on binary representation coming up and I wanted to have an easy way to check my understanding.
- A signed representation calculator
- One's complement (yes I know it's useless)
- Two's complement (Very much not useless)
- Floating point (IEEE 754)
- A GUI
- https://www.calculator.net/binary-calculator.html?b2dnumber1=10101010&calctype=b2d&x=63&y=17#binary2decimal
- https://www.omnicalculator.com/math/ones-complement
- https://www.exploringbinary.com/twos-complement-converter/
I now have the twos complement conversion working! It only took a few minor tweaks. Now I will start working on a simple GUI to make it neat. The plan is also to eventually package this program so it can be distributed.