complete chapter 5 exercises
This commit is contained in:
parent
d927ba186b
commit
1748a31acd
11
C5/ex4.c
Normal file
11
C5/ex4.c
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
float r;
|
||||||
|
printf("Enter radius: ");
|
||||||
|
scanf("%f", &r);
|
||||||
|
|
||||||
|
printf("Area of circle: %f\n", M_PI*r*r);
|
||||||
|
printf("Volume of sphere: %f\n", M_PI*r*r*r*4.0/3.0);
|
||||||
|
}
|
Reference in New Issue
Block a user