Computer Applications

Write the Java expressions for the following: (√3/4)a²

Java Math Lib Methods

19 Likes

Answer


(Math.sqrt(3) * a * a) / 4

Answered By

11 Likes


Related Questions