Computer Science, asked by suryatripathi15, 8 months ago

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

ii. z = ax3 + bx3 + c​

Answers

Answered by anunknownuser
3

Explanation:

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

ii. double z=(a*Math.pow(x, 3))+(b*Math.pow(x, 3))+c

Please mark me as brainliest...if you have found this answer helpful...

Hope it helps!!

Similar questions