SOURCE FILE: lab021.cpp


// Opening comment that describes the program
// Preprocessor directive to include header file iostream.h

int main(void)
{
   // Declarations of 3 variables with comments for each

   // Initialization of speed and time elapsed
   // Calculation of distance covered
   // Print values of 3 variables

   return 0;
}