/bigint

A simple arbitrary length integer and rational number class in C++.

Primary LanguageJava

Rational Thinking

Matt Tyler: 1049833 Rosie Bicknell: 5886555

Building and Running

To build and run the program using the provided Makefile, you can use the following steps in a terminal:

  1. Navigate to the project directory using the cd command:

    cd path/to/project
  2. Type make in the terminal to build the program:

    make

    This will compile the program and generate the executable file.

  3. Run the program by typing:

    ./bin/rational_thinking
A shorthand for making and running is provided for convenience:
make run
Cleaning up

To clean the working directory afterwards:

make clean