5 lines
55 B
Text
5 lines
55 B
Text
|
|
float multiply(float x, float y)
|
||
|
|
{
|
||
|
|
return x * y;
|
||
|
|
}
|