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