Computer Science, asked by vaishnavipatel30, 7 months ago

write the java expression for the following. R=a3+b3+a/3​

Answers

Answered by Oreki
2

R = Math.pow(a, 3) + Math.pow(b, 3) + a / 3;

Answered by anindyaadhikari13
1

\star\:\:\:\sf\large\underline\blue{Question:-}

  • Write a java expression for the following.

\star\:\:\:\sf\large\underline\blue{Answer:-}

double r, a, b; // assign values as you wish.

R = Math.pow(a, 3)+Math.pow(b,3)+a/3.0;

Similar questions