/* sphereDriver.cpp tests class Sphere.
 * ... documentation omitted to save space ...
 ****************************************************************/

#include <iostream>              // cin, cout, >>, <<
#include "Sphere.h"              // Sphere
using namespace std;

int main()
{
   cout << "Enter a sphere's radius and density: ";
   Sphere aSphere;
   aSphere.readRadiusAndDensity(cin);

   cout << "The sphere's weight is "
        << aSphere.getWeight() << endl;



   return 0;
}
