Advertisements
Advertisements
Question
Write the Java expression for the following:
`sqrt(3x + x^2)/((a + b))`
One Line Answer
Solution
(Math.sqrt(3 * x + x * x)) / (a + b)
shaalaa.com
Is there an error in this question or solution?
Chapter 1.04: Operators in Java - EXERCISES [Page 43]