if int n[] = { 1,2,3,5,7,9,13,16} x= Math.pow(n[4],n[2]); y=Math.sqrt(n[5]+n[7]);. What is the value of x and y ..
Answers
Answered by
1
Answer:
x=343.0
y= 5.0
Explanation:
x=Math.pow(7,3)
=> x=343.0
y=Math.sqrt( 9+16)
=Math.sqrt(25)
=> y=5.0
Similar questions