Computer Applications

Write the Java expressions for the following: a² + b³ + c⁴

Java Math Lib Methods

13 Likes

Answer


Math.pow(a, 2) + Math.pow(b, 3) + Math.pow(c, 4)

Answered By

10 Likes


Related Questions