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:
parent
bffd2aad57
commit
99af5da377
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue