CCCalc is a C++ based calculator program designed to perform basic arithmetic operations.
The input format for CCCalc is {char}<space>{int}. You need to enter an arithmetic operator followed by a space and an integer.
+: Addition-: Subtraction/: Division*: Multiplication
==================================
= Input: +10 =
= Total: 10 =
==================================
==================================
= Input: -5 =
= Total: 5 =
==================================
==================================
= Input: *2 =
= Total: 10 =
==================================
==================================
= Input: /2 =
= Total: 5 =
==================================
To terminate the program, input =0.
1.0.0