Math.sqrt(math.max(Math.abs(-400.0),Math.pow(5,4)
Answers
Answered by
2
import java.util.*;
public class a
{
public static void main(String args[])
{
double a = Math.sqrt(Math.max(Math.abs(-400.0),Math.pow(5,4)));
System.out.println(a);
}
}
OUTPUT : 25.0
Similar questions