write an assignment statement that might be used to implement the following equation v =4/3 sqrt r³
Answers
Answered by
0
Answer:
see if you are using java
then the logic will be like this(i am assuming that you know the syntax)
double v , r;
.......then you input the value of r(assuming that you know how to input)
v = 4/3.0 * (Math.sqrt(r*r*r));
note: its important to write 4/3 as 4/3.0 other the answer will be implicitly converted and you may get wrong output
Explanation:
Similar questions