MAIN.CXX
We must include the file sphere.h that declares the class in order to use it.
Then, unlike a struct, we can create a class object in our program as if it were a regular data type.
#include "sphere.h"
int main (void)
	{	
	sphere mySphere;
	};