public int getBallVolume (double radius) {return (int)(4/3*Math.PI*Math.pow(radius,3));} 괄호 어딧다 넣어야 식 제대로 나옴?
return (int)((4)/(((3) * (Math.PI)) * (Math.pow(radius,3))));
return (int)(((4)/(3)) * ((Math.PI) * (Math.pow(radius,3)))));
return (int)((4)/((3) * (Math.PI)) * (Math.pow(radius,3)))));
셋다 돌려바 심숑키야 ㅋㅋㅋ