2012-08-13 13:42:58 -04:00
|
|
|
// A simple program that builds a sqrt table
|
2007-11-08 10:38:26 -05:00
|
|
|
#include <math.h>
|
2016-04-29 10:53:13 -04:00
|
|
|
#include <stdio.h>
|
2007-11-08 10:38:26 -05:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
int main(int argc, char* argv[])
|
2007-11-08 10:38:26 -05:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
double result;
|
|
|
|
|
|
|
|
// make sure we have enough arguments
|
2016-05-16 10:34:04 -04:00
|
|
|
if (argc < 2) {
|
2007-11-08 10:38:26 -05:00
|
|
|
return 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2007-11-08 10:38:26 -05:00
|
|
|
// open the output file
|
2016-05-16 10:34:04 -04:00
|
|
|
FILE* fout = fopen(argv[1], "w");
|
|
|
|
if (!fout) {
|
2007-11-08 10:38:26 -05:00
|
|
|
return 1;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2009-06-23 12:58:19 -04:00
|
|
|
// create a source file with a table of square roots
|
2016-05-16 10:34:04 -04:00
|
|
|
fprintf(fout, "double sqrtTable[] = {\n");
|
|
|
|
for (i = 0; i < 10; ++i) {
|
2007-11-08 10:38:26 -05:00
|
|
|
result = sqrt(static_cast<double>(i));
|
2016-05-16 10:34:04 -04:00
|
|
|
fprintf(fout, "%g,\n", result);
|
|
|
|
}
|
2007-11-08 10:38:26 -05:00
|
|
|
|
|
|
|
// close the table with a zero
|
2016-05-16 10:34:04 -04:00
|
|
|
fprintf(fout, "0};\n");
|
2007-11-08 10:38:26 -05:00
|
|
|
fclose(fout);
|
|
|
|
return 0;
|
|
|
|
}
|