Konloch Software

Injected Calculator

Published 10/15/2023

A calculator demo. “But its also missing code, so it injects what its missing”

  • The idea came from a discussion about writing the most obfuscated calculator.

What Does It Do?

  • A blank calculator base with the Add, Sub, Mul & Div operators.
  • During runtime the operator functions are written then dynamically loaded into memory.

Links

Requirements

  • Java 8 or greater

Media

Injected Calculator - Screenshot(Click to enlarge)

How To Use

Pipe your math equation into the CLI (Avoid using parentheses).

java -jar ic.jar 1+1*5/9

Disclaimer

  • This is more of a fun experiment, don’t take it too seriously.
  • Only 4 operations supported. (Add, Subtract, Multiply, Divide)
  • No decimal / floating point / parentheses support. (Integers only / limited order of operations support)

Latest Updates