Computer Science, asked by riddhimajain145, 4 months ago

Write Java Expression For:

Attachments:

Answers

Answered by Oreki
0

Java Expression:

(Math.pow(a, b) / (Math.sqrt(b) / d)) + (1d/2d)

Answered by anindyaadhikari13
2

Question:-

Write a Java expressed for the following.

Answer:-

Given expression,

 \sf \frac{ {a}^{b} }{ \frac{ \sqrt{b} }{d} }  +  \frac{1}{2}

The Java expression for the following will be,

Math.pow(a, b)/(Math.sqrt(b)/d) +1/2.0

Note:- Math.pow(x, y) is used to return x raised to the power y.

Similar questions