5 lines
57 B
C
5 lines
57 B
C
|
|
double multiply(double a, double b)
|
||
|
|
{
|
||
|
|
return a * b;
|
||
|
|
}
|