KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

f=a2+b2a2b2f = \dfrac{a^2 + b^2}{a^2 - b^2}

Java Operators

32 Likes

Answer


f = (a * a + b * b) / (a * a - b * b)

Answered By

21 Likes


Related Questions