Computer Science, asked by sharanya1018, 4 months ago

Write the java expression for the following:
i) S = (a+bc)/a-b
ii) x² + 2x + 4​

Answers

Answered by heyParam
2

Answer:

i) S = (a+b*c)/a-b

ii) x*x + 2*x + 4

Explanation:

An asterisk (*) is used to represent the multiplication operator.

Answered by swastikPMBGHking
0

Answer:

i) SS = (a+b*c)/(a-b);

ii) int S = Math.pow(x,2)+(2*x)+4

Similar questions