KnowledgeBoat Logo
|

Computer Applications

Write the Java expression for the following:

3x+x2(a+b)\dfrac{\sqrt{3x + x^2}}{(a + b)}

Java Operators

ICSE 2018

47 Likes

Answer


Math.sqrt(3 * x + x * x) / (a + b)

Answered By

27 Likes


Related Questions