Computer Science, asked by tahannus6976, 7 months ago

Write java code for the following expression:-( 7a4+2b)/ (a2+b2)

Answers

Answered by Haruhi22
0

Answer:

(7 * (int) Math.pow(a,4) + (2*b))/( (int) Math.pow(a,2)+(int) Math.pow(b,2) )

Similar questions