/RPN_Calculator

Scientific calculator using reverse polish notation with complementary features to code, design and execute user-written programs easily.

Primary LanguageC++

Reverse Polish Notation (RPN) Calculator

Scientific calculator using reverse polish notation with complementary feature to write and execute user-written program easily.

Prerequisites (Linux)

  • C++ compiler (gcc, g++, ...)
  • Qt5
  • Cmake
  • SQLite

To install qt5, go here to download zip file and follow instructions on their page. For C++, Cmake and their dependencies, use following command:

sudo apt-get install cmake g++

Build the application (Linux)

mkdir build && cd build && cmake .. && cd ..
cmake -S . -B build
cmake --build build

How to run (Linux)

The executable file will be in the build directory:

build/RPN_Calculator

Application Interface

image