Write the corresponding java expression / statement all the following mathematical statements under root a cube plus b cube plus c cube
Answers
Answered by
6
public class ~~~
{
public static void main(String[]args)
{
double a;
double b;
double c;
double Exps = Math.sqrt(Math.sqrt(Math.pow(a,3))+Math.pow(b,3)+Math.pow(c,3))
}}
Answered by
1
Answer:(Math.sqrt(Math.pow(a,3))+Math.pow(b,3)+Math.pow(c,3);
Similar questions