Write the java expression for the following:
i) S = (a+bc)/a-b
ii) x² + 2x + 4
Answers
Answered by
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
0
Answer:
i) SS = (a+b*c)/(a-b);
ii) int S = Math.pow(x,2)+(2*x)+4
Similar questions