•//************************************************************
•// Rainfall program
•// This program inputs 12 monthly rainfall amounts from a
•// recording site and computes the average monthly
rainfall.
•//
This process is repeated for as many recording sites as
•//
the user wishes.
•//************************************************************
•
•#include
<iostream>
•#include
<iomanip> // For
setprecision()
•
•using namespace std;
•
•void Get12Amounts( float& );
•void GetOneAmount( float& );
•void GetYesOrNo( char& );