sp-kr-part1/calculator.h
Sergii Piatakov 8b7e818d3a add a multiplication operation
Add a member-function which performs multiplication of two float point
digits.

Signed-off-by: Sergii Piatakov <sergii.piatakov@globallogic.com>
2024-10-07 19:23:14 +03:00

13 lines
201 B
C++

#ifndef CALCULATOR_H
#define CALCULATOR_H
class Calculator
{
public:
int Add (double, double);
int Sub (double, double);
int Mul (double, double);
};
#endif//CALCULATOR_H