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