Computer Science, asked by dreamit2421, 10 days ago

Give the output of the following:
x=7.61, y=9.12
Calculate z=Math.abs(x)+Math.ceil(y) ​

Answers

Answered by mahi78972
1

Answer:

Answer of the above question is 17.61

Explanation:

z=Math.abs(x) +Math.ceil(y)

Math. abs(7.61) +Math.ceil(9.12)

7.61+10.0

17.61

Similar questions