Computer Science, asked by kookie9987, 1 month ago

write the following expression in java:-
(a) √3/4a^2
(b) a^2+b^3+c^4
(c) (a+b)^2/ab
(d) 3√mn+mn^3
⚠DON'T SPAM IF YOU SPAM YOUR 20 ANSWER WILL BE REPORTED!!⚠​

Answers

Answered by kamalrajatjoshi94
8

Answer:

Java expressions for the following:

a) Math.sqrt(3)*Math.pow(a,2)/4

Or:

a) Math.pow(3)*(a*a)/4

b) a*a+b*b*b+c*c*c*c

OR:

Math.pow(a,2)+Math.pow(b,3)+Math.pow(c,4)

c) 3*(Math.sqrt(m*n)+m*(Math.pow(n,3)

OR:

c) 3*Math.sqrt(m*n)+m*(n*n*n)

Answered by fazalnauman07
0

Answer:

Java expressions for the following:

a) Math.sqrt(3)*Math.pow(a,2)/4

Or:

a) Math.pow(3)*(a*a)/4

b) a*a+b*b*b+c*c*c*c

OR:

Math.pow(a,2)+Math.pow(b,3)+Math.pow(c,4)

c) 3*(Math.sqrt(m*n)+m*(Math.pow(n,3)

OR:

c) 3*Math.sqrt(m*n)+m*(n*n*n)

Similar questions