0
What is the meaning of this code (int)math.pow (2) ??
2 ответов
+ 6
math.pow is the power or exponential function. there should be two args: Math.pow(base, power);
so Math.pow(3,2);
returns 9 (3^2==9)
0
still can't understand can u tell in easy way @J.G.