summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/Step6/MathFunctions
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-04-27 14:41:53 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-04-27 14:42:11 (GMT)
commit40ea6b328b31addef9c6121be5263dc4982d2d0c (patch)
tree1cf727bcbd721b81b2dc951f906f842b5dd02360 /Help/guide/tutorial/Step6/MathFunctions
parentfaf635df0eadf891a9316e1bb3022c2bc1a4ae76 (diff)
parentdd62ee376e4cd3018906f7a913a88d2352b637bc (diff)
downloadCMake-40ea6b328b31addef9c6121be5263dc4982d2d0c.zip
CMake-40ea6b328b31addef9c6121be5263dc4982d2d0c.tar.gz
CMake-40ea6b328b31addef9c6121be5263dc4982d2d0c.tar.bz2
Merge topic 'tutorial-restore-maketable-step-6'
dd62ee376e Tutorial: Restore MakeTable.cxx in step 6 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4674
Diffstat (limited to 'Help/guide/tutorial/Step6/MathFunctions')
-rw-r--r--Help/guide/tutorial/Step6/MathFunctions/MakeTable.cxx25
1 files changed, 25 insertions, 0 deletions
diff --git a/Help/guide/tutorial/Step6/MathFunctions/MakeTable.cxx b/Help/guide/tutorial/Step6/MathFunctions/MakeTable.cxx
new file mode 100644
index 0000000..ee58556
--- /dev/null
+++ b/Help/guide/tutorial/Step6/MathFunctions/MakeTable.cxx
@@ -0,0 +1,25 @@
+// A simple program that builds a sqrt table
+#include <cmath>
+#include <fstream>
+#include <iostream>
+
+int main(int argc, char* argv[])
+{
+ // make sure we have enough arguments
+ if (argc < 2) {
+ return 1;
+ }
+
+ std::ofstream fout(argv[1], std::ios_base::out);
+ const bool fileOpen = fout.is_open();
+ if (fileOpen) {
+ fout << "double sqrtTable[] = {" << std::endl;
+ for (int i = 0; i < 10; ++i) {
+ fout << sqrt(static_cast<double>(i)) << "," << std::endl;
+ }
+ // close the table with a zero
+ fout << "0};" << std::endl;
+ fout.close();
+ }
+ return fileOpen ? 0 : 1; // return 0 if wrote the file
+}