Language Basics : program structure
#include <iostream.h> // include facility
cout << “Enter radius of the sphere \n”;
float Volume = 4 * PI * Radius * Radius * Radius /3;
cout << “The volume of the sphere of radius” << radius << “is” << Volume << endl;