KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

π6(z42π)\dfrac{\pi}{6}(z^4 - 2\pi)

Java Math Lib Methods

40 Likes

Answer


Math.PI / 6*(Math.pow(z, 4) - 2*Math.PI)

Answered By

23 Likes


Related Questions