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>
This commit is contained in:
rhinemann 2024-10-10 18:43:08 +03:00
parent ef3331a870
commit ad82668fad
No known key found for this signature in database
GPG Key ID: C1DB7F47D841603E
2 changed files with 7 additions and 0 deletions

View File

@ -9,3 +9,8 @@ int Calculator::Sub (double a, double b)
{
return Add (a, -b);
}
int Calculator::Mul (double a, double b)
{
return a * b + 0.5;
}

View File

@ -6,6 +6,8 @@ class Calculator
public:
int Add (double, double);
int Sub (double, double);
int Mul (double, double);
>>>>>>> e0ea21b (add a multiplication operation)
};
#endif//CALCULATOR_H