Computer Science, asked by reshmababy65781, 7 months ago

Write the corresponding java expression / statement all the following mathematical statements under root a cube plus b cube plus c cube

Answers

Answered by AtharvATAR
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 Randomperson9
1

Answer:(Math.sqrt(Math.pow(a,3))+Math.pow(b,3)+Math.pow(c,3);

Similar questions