Computer Science, asked by subhramondal30111972, 11 days ago

write a java statement x= 2a⁸/3b⁵ - 3c⁶​

Answers

Answered by Tanishqs
1

x = (2*a*a*a*a*a*a*a*a)/(3*b*b*b*b*b)-(3*c*c*c*c*c*c)

Or we can do it with math class like this :-

x = (2*Math.pow(a,8))/((3*Math.pow(b,5))-((3*Math.pow(c,6)))

Similar questions