//
// source code: test_hebbeker1.cc 
// purpose:     test function hebbeker1
// author:      T. Hebbeker   
// version:     1.0, 2006-10-30
//

#include <iostream>
#include <math.h>
using namespace std;


double hebbeker1 (double x);


int main()
{
  cout << endl 
       << " program   === test_hebbeker1 ===   version 1.0 " 
       << endl;
  
  double t;

  while(1)
  {
    cout << endl << " enter t : ";
    cin >> t;

    cout << endl 
         << " hebbeker1(t=" << t << ") = " << hebbeker1(t) << endl;
  }

  return 0;
}





