1.

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

Answer»

Explanation:

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

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



Discussion

No Comment Found