The function seemed too crammed to me, so I made it look much more spacious than before. Signed-off-by: IO-23 Oleh Shmuliar <hasslesstech@tutanota.com>
21 lines
266 B
C++
21 lines
266 B
C++
#include "calculator.h"
|
|
|
|
int Calculator::Add (double a, double b)
|
|
{
|
|
return a + b + 0.5;
|
|
}
|
|
|
|
int Calculator::Sub (double a, double b)
|
|
{
|
|
return Add (a, -b);
|
|
}
|
|
|
|
int
|
|
Calculator::Mul(double a,
|
|
double b)
|
|
{
|
|
return a
|
|
* b
|
|
+ 0.5;
|
|
}
|