Write Java Expression For:
Attachments:
Answers
Answered by
0
Java Expression:
(Math.pow(a, b) / (Math.sqrt(b) / d)) + (1d/2d)
Answered by
2
Question:-
Write a Java expressed for the following.
Answer:-
Given expression,
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