KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

The square root of a+5b3The\space square\space root\space of\space a + 5b^3

Java Math Lib Methods

3 Likes

Answer


Math.sqrt(a +  5 * Math.pow(b, 3))

Answered By

1 Like


Related Questions