Advertisements
Advertisements
Question
What values will be stored in the variables p and q after executing the following code?
double x = 5.9, y = 6.5;
double p = (Math.min(Math.floor(x), y));
double q = (Math.max(Math.ceil(x), y));
Answer in Brief
Solution
p = 5.0
q = 6.5
shaalaa.com
Is there an error in this question or solution?