/*************************************************************************** main.cpp - description ------------------- begin : Thu Jan 16 22:13:13 CST 2003 copyright : (C) 2003 by Daniel Eric Smith email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifdef HAVE_CONFIG_H #include #endif #include #include #include int main(int argc, char *argv[]) { float r,a=1.0; ofstream logtable("./logtable-10.txt"); logtable.precision(4); if (! logtable) // Always test file open { cout << "Error opening output file" << endl; return -1; } logtable <<"N"<<" & "; for(int i=0;i<=9;i++) { logtable <