Computer Science, asked by anuragsingh090, 5 months ago

Write java expression of the following:- x3 + √x-4ac ÷ (2a)4

Answers

Answered by Haruhi22
1

Answer:

(int)Math.pow(x,3) +

( (int)Math.sqrt(x - (4*a*c) ) / (int)Math.pow(2*a) )

Similar questions