Computer Applications

Write the java statement for:

Sum of a raised to b and cuberoot of c

Java Math Lib Methods

58 Likes

Answer

Java statement is:

Math.pow(a, b) + Math.cbrt(c);

Answered By

36 Likes


Related Questions