/*Finds the surface area and volume of sphere*/ #include #include #define SPH_VOL 1.33333333 #define SPH_AREA 12.56637061 float sphvolume(float radius); float spharea(float radius); int main() { float r; cout<<"Radius : ";cin>>r; cout<<"Volume = "<