Computer Science, asked by deeksha912, 11 months ago

Write the corresponding Java expession / statement for the following mathematical statements: (i) 3-rs^2r+4s. (ii). | e^y-y | (iii). a+b / ( c + d) ^ 3​

Answers

Answered by ashubansal14782
1

Therefore, the following two statements are equivalent: x + y / 100 ... The following types of expressions can be made into a statement by ...

Answered by mn121
20

(i) 3-rs^2r+4s = 3-(r*Math.pow(s,(2*r)))+(4*s)

(ii) | e^y-y |  = Math.abs(Math.exp(y)-y)

(iii) a+b / ( c + d) ^ 3​ = a+(b/Math.pow((c+d),3))

Similar questions