write the java expression for the following. R=a3+b3+a/3
Answers
Answered by
2
R = Math.pow(a, 3) + Math.pow(b, 3) + a / 3;
Answered by
1
- Write a java expression for the following.
double r, a, b; // assign values as you wish.
R = Math.pow(a, 3)+Math.pow(b,3)+a/3.0;
Similar questions