// includes
#include <stdio.h>
#include <stdlib.h>
#include <iostream.h>
#include <ctype.h>
#include <math.h>
#include <string.h>
#include <alloc.h>
#include <fstream.h>
#include <iomanip.h>
// prototypes
double cinFloat();
// defines
#define SKIPLINE cout<<endl
///////////////////////////////////////////////////////////////////
// _Programmer:
// _ _Date Due:
// _ _ _ Input:
// _ _ Process:
// _ _ _Output:
//
int main(){
//declarations
_char
ans; //eof check
//heading
//main loop
_do{
_ _ //input
_//<<<process>>>
_ _ //output
_ _ //check for exit
_ _ cout<<endl<<"continue? (Y/N) ";
_ _ do
_ _ _ ans = toupper(getchar());
_ _ while (ans !='Y' && ans != 'N');
_ _ SKIPLINE;
_}while (ans == 'Y');
_SKIPLINE;
//wrap up
_cout<<endl<<"End of program";
return (0);
}//main()
//-------------------------------------------------------
double cinFloat(){
_char* s = new char[30];
_cin>>s;
_double x = atof(s);
_delete [] s;
_return x;
}//cinFloat()