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