SOURCE FILE: fvShell.cpp



#include <iostream>
#include <cmath>

using namespace std ;

       /* Prototypes */

  void   PrintDirections() ;
  double GetPmt() ;
  double GetRate() ;
  int GetNumWeeks() ;
  double Compute_FV(double, double, int)  ;
  void Report_FV(double, double, int, double) ;

/* **************************************** */
/*                 MAIN                     */
/* **************************************** */

int main ()
{
}



/* **************************************** */
/*               PRINT DIRECTIONS           */
/* **************************************** */

/* Print directions for the user of the program. */

void PrintDirections()
{
}



/* **************************************** */
/*                    GETPMT                */
/* **************************************** */

  /* Prompt the user to enter the amount of the weekly payment,
     read it in, and return it to the caller. */

double GetPmt() 
{
}



/* **************************************** */
/*                    GETRATE               */
/* **************************************** */

  /* Prompt the user to enter the amount of the annual interest
     rate, read it in, and return it to the caller. */

double GetRate()
{
}



/* **************************************** */
/*              GETNUMWEEKS                 */
/* **************************************** */

  /* Prompt the user to enter the number of weekly payments, read
     it in, and return it to the caller. */

int GetNumWeeks()
{
}



/* **************************************** */
/*              COMPUTE_FV                  */
/* **************************************** */

  /* Return the future value of N payments of P dollars at annual
     interest rate percentage R. */

double Compute_FV(double P, double R, int N) 
{
}



/* **************************************** */
/*              REPORT_FV                   */
/* **************************************** */

  /* Report to the user -- tell the user that fv is the future
     value of N payments of P dollars at annual interest rate
     percentage R. */

void Report_FV(double P, double R, int N, double fv) 
{
}



/* **************************************** */
/*                   END                    */
/* **************************************** */