SOURCE FILE: fvShell.cpp



#include <iostream>
#include <iomanip>
#include <math.h>

using namespace std ;

       /* Prototypes */

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

/* **************************************** */
/*                 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. */

float GetPmt() 
{
}



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

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

float 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. */

float Compute_FV(float P, float 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(float P, float R, int N, float fv) 
{
}



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