Skip to content

Simple Calculator v0.3

Latest
Compare
Choose a tag to compare
@C0dePr0xy C0dePr0xy released this 02 Feb 00:44
· 2 commits to main since this release
6218f74

Simple Calculator Program - Version 0.0.3

2024-02-01.18-55-48.mp4

Overview

Welcome to the release of the Simple Calculator program version 0.0.3! This release includes zero bug fixes, minor updates, and a few features to add more functionality. 😄

Features

1. New Features

  • Basic history functionality was improved

Old:
std::ofstream mathdata("history.mdta"); mathdata << "[" << double1 << "] [" << double2 << "]\n"; mathdata << double1 + double2 << "\n"; mathdata.close();

New:
mathdata << "--------------------------------------------------------\n"; mathdata << "User: " << name << "\n"; mathdata << "[" << double1 << "]" << " + " << "[" << double2 << "]\n"; mathdata << " = " << double1 + double2 << "\n"; mathdata << "--------------------------------------------------------\n"; mathdata.close();

Usage

  1. Download the Release:

    • Visit the Releases page.
    • Download the ZIP file.
  2. Installation:

    • Extract the ZIP file to your desired location.
    • Run the executable file to launch the calculator.
  3. Calculator Interface:

    • Follow the on-screen instructions to input your name and perform calculations and other program functions.

What's Changed

New Contributors

Full Changelog: v0.2...v0.3

Example Usage

Simple Calculator [v0.3]

What is your name?
John
Welcome to my simple calculator, John.

Enter first number of the equation. (1 number!):10
Do you want to find the root or a power of the first number?
Enter [y] for yes or [n] for no
n
Add the second number: 5

[10] [5]

[+][-][*][/][%]
+
15
Do you want to clear the history? [y] for yes or [n] for no
n
Do you want to quit now? [y] for yes or [n] for no
y