Computer Applications

Write the java statement for:

Sum of a raised to b and cuberoot of c

Java Math Lib Methods

64 Likes

Answer

Java statement is:

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

Answered By

40 Likes


Related Questions