KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

a2+b3+c4a^2 + b^3 + c^4

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