Solve the following and show the final values
a) System.out.println(Math.max(Math.round(16.5),Math.floor(17.4)));
b) System.out.println(Math.ceil(26.5)+Math.floor(17.4));
c) System.out.println(Math.sqrt(49)-Math.pow(2,2));
d) System.out.println(Math.abs(Math.pow(Math.sqrt(36),2)));
e) System.out.println(Math.min(-28,-56));
Answers
Answered by
1
Answer:
a)17
b)43
c)3
d)-56
Explanation:
Mark me brainliest
Similar questions