Computer Applications

Write the Java expressions for the following: (a + b)² / ab

Java Math Lib Methods

20 Likes

Answer


Math.pow((a + b), 2) / (a * b)

Answered By

11 Likes


Related Questions