write down the syntax for the following functions:
1) To find the smaller number between the two numbers p and q.
2) To find the absolute value of m.
3) To find the exponent of a number k.
4) To find the square root of a number d.
5) To find the rounded-off value of a number.
Answers
Answered by
27
Explanation:
In java
1)Math. min(p, q);
2)Math. abs(m);
3)Math. exp(k);
4)Math. sqrt(d);
5)Math. round(number);
Answered by
8
Answer:
1)Math. min(p, q);
2)Math. abs(m);
3)Math. exp(k);
4)Math. sqrt(d);
5)Math. round(number);
Similar questions