“Formula volume bola” Kode Jawaban

Formula volume bola

def volume(radius):
    return (4/3) * math.pi * (radius ** 3) # (4/3)πr^3
Fair Fox

Volume dari sebuah bola

#define _USE_MATH_DEFINES // must include this!
#include <cmath>

return 4/3 * M_PI * r*r*r;
Silver Takana

Formula bola

package main

import (
	"bufio"
	"fmt"
	"math"
	"os"
	"strconv"
)

func sfa(f float64) float64 {
	return math.Pi * math.Pow(f, 2) * 4
}

func vol(f float64) float64 {
	return math.Pi * math.Pow(f, 3) * math.Pi
}

func dim(f float64) float64 {
	return f * 2
}

func main() {
	s := bufio.NewScanner(os.Stdin)
	fmt.Printf("Enter a sphere's radius: ")
	s.Scan()
	f, _ := strconv.ParseFloat(s.Text(), 64)

	sfaMain := sfa(f)
	volMain := vol(f)
	dimMain := dim(f)

	fmt.Printf("The surfaace area of the sphere: %.3f \n", sfaMain)
	fmt.Printf("The volume of the sphere: %.3f \n", volMain)
	fmt.Printf("The diameter of the sphere: %.3f \n", dimMain)
}
gocrazygh

volume bola

(4/3)πr^3
Silver Takana

Jawaban yang mirip dengan “Formula volume bola”

Pertanyaan yang mirip dengan “Formula volume bola”

Lebih banyak jawaban terkait untuk “Formula volume bola” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya