Computer Science, asked by sexy885, 4 months ago

find the answed please urgent no spam​

Attachments:

Answers

Answered by rupesh884
0

Answer:

1. Math.sqrt(a+b)

2. (1/3*Math.pow(a,3)+1/4*Math.pow(b,3))

3. s=u*t+1/2*f*Math.pow(t,2)

4. d=Math.sqrt(l*l+b*b)

5. (-1*b+Math.sqrt(b*b-4*a))/2*a

6. ((a*a*a)+(b*b*b))/((a*a*a)-(b*b*b))

7. (Math.abs(a-b))/(Math.abs(a+b))

Explanation:

you do the others with this seven answers

Answered by purvanshsharma6
1

Answer:

1. int n = Math.sqrt(a + b)

2. int n = 1/3 * a * a * a + 1/4 * b * b * b

3.int s = u * t + 1/2 * f * t * t

4.int d = Math.sqrt(l * l + b * b)

5.int n = (-b + Math.sqrt(b * b - 4 * a))/2 * a

6.int n = (a * a * a + b * b * b)/(a*a*a - b*b*b)

7.int n = (a-b)/(a+b)

8.int n = Math.cbrt((a+b)/ab)

9.int n = Math.cbrt((5*x*x + y)) /  Math.pow(x + 11 * y * y * y, 1/4)   //as java doesnt have any formula for fourth root so we use maths exponents rule.

10.int n = (x + y) / Math.sqrt(x - y)

Explanation:

Similar questions