Write a statement::
a.to store the cube root of num in a variable.
b.to print the double of the difference of value stored in A and B.
Answers
Answered by
1
a. double n= Math.pow(num)
b.int dif=B-A;
System.out.println(2*dif);
Similar questions