Contact: aviboots(AT)netvision.net.il
41,215 questions
53,717 answers
573 users
function sphere_volume($r) { return 4.0 / 3.0 * M_PI * pow($r, 3); } $radius = 5; echo sphere_volume($radius) . "\n"; printf("%.2f", sphere_volume($radius)); /* run: 523.5987755983 523.60 */
function sphere_volume($r) { return (4.0 / 3.0) * M_PI * ($r * $r * $r);; } $radius = 5; echo sphere_volume($radius) . "\n"; printf("%.2f", sphere_volume($radius)); /* run: 523.5987755983 523.60 */