Computer Science, asked by drraghu, 8 months ago

Write the JAVA expressions for the following: a. S = (a + bc)/(a-b) _______________________________________________________ b. S1 = x2 + 2x + 4

Answers

Answered by StephenDeva
1

Explanation:

a) s = (a + (b*c) /(a - b)

b) s1 = (x * x) + (2* x) + 4 or Math.pow(x,2) + (2* x) + 4

Similar questions