Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Volume of Sphere with Powf
//g++ 5.4.0 #include <stdio.h> #include <math.h> const float pie = 3.14; int main(void) { float radius; float volume; scanf("%f", &radius); volume = (4.0/3.0)*pie*powf(radius,3); printf ("the volume of the sphere is %f", volume); return 0; }
run
|
edit
|
history
|
help
0
decode
Fundamentos de programación. Tema 7. Ejercicio 6. Con funciones.
005#
Callback
Switch case
temporaries and move constructor
POI
Kishan_Basic_Geometry
stlsizeof.cc
MyList