improve upon stylistic choice of Mul function

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>
This commit is contained in:
ІО-23 Шмуляр Олег 2024-10-07 19:26:54 +03:00
parent 8b7e818d3a
commit 71f04b9f60
Signed by: hasslesstech
GPG Key ID: 09745A46126DDD4C
1 changed files with 6 additions and 2 deletions

View File

@ -10,7 +10,11 @@ int Calculator::Sub (double a, double b)
return Add (a, -b); return Add (a, -b);
} }
int Calculator::Mul (double a, double b) int
Calculator::Mul(double a,
double b)
{ {
return a * b + 0.5; return a
* b
+ 0.5;
} }