2005-11-10 18:50:45 +03:00
|
|
|
// A simple program that computes the square root of a number
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "TutorialConfig.h"
|
|
|
|
#include <math.h>
|
2005-11-10 18:50:45 +03:00
|
|
|
#include <stdio.h>
|
2005-11-10 23:13:54 +03:00
|
|
|
#include <stdlib.h>
|
2005-11-10 18:50:45 +03:00
|
|
|
|
|
|
|
#ifdef USE_MYMATH
|
|
|
|
#include "MathFunctions.h"
|
|
|
|
#endif
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
int main(int argc, char* argv[])
|
2005-11-10 18:50:45 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (argc < 2) {
|
|
|
|
fprintf(stdout, "%s Version %d.%d\n", argv[0], Tutorial_VERSION_MAJOR,
|
2005-11-10 18:50:45 +03:00
|
|
|
Tutorial_VERSION_MINOR);
|
2016-05-16 17:34:04 +03:00
|
|
|
fprintf(stdout, "Usage: %s number\n", argv[0]);
|
2005-11-10 18:50:45 +03:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-11-10 18:50:45 +03:00
|
|
|
|
|
|
|
double inputValue = atof(argv[1]);
|
2014-10-30 14:23:27 +03:00
|
|
|
double outputValue = 0;
|
2005-11-10 18:50:45 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (inputValue >= 0) {
|
2005-11-10 18:50:45 +03:00
|
|
|
#ifdef USE_MYMATH
|
2014-10-30 14:23:27 +03:00
|
|
|
outputValue = mysqrt(inputValue);
|
2005-11-10 18:50:45 +03:00
|
|
|
#else
|
2014-10-30 14:23:27 +03:00
|
|
|
outputValue = sqrt(inputValue);
|
2005-11-10 18:50:45 +03:00
|
|
|
#endif
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-11-10 18:50:45 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
fprintf(stdout, "The square root of %g is %g\n", inputValue, outputValue);
|
2005-11-10 18:50:45 +03:00
|
|
|
return 0;
|
|
|
|
}
|