Write the statement for the following functions in Java : [ 5 ]
a. To find the greater between X and y.
b. To find the absolute value of m.
c. To find S to the power 6.
d. To find square root of G.
e. To find approximate value of P.
Answers
Answered by
2
Answer:
a) Math.max(x,y)
b) Math.abs(m)
c) Math.pow(S,6)
d) Math.sqrt(G)
e) Math.approx(P)
Similar questions