Write a java statement using mathematical function for each to perform the
following task:
(i) Find the absolute value of square root of a+b
(ii) Convert string type variable s into integer value and store in a variable n.
Answers
Answered by
1
Answer:
Math.abs(Math.sqrt(a+b));
n=Integer.toString(s);
Explanation:
plz mark as brainlist
Similar questions