1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-22 07:25:02 +08:00
Files
CMake/Help/guide/importing-exporting/DownstreamComponents/main.cc
2020-09-11 08:50:52 -04:00

29 lines
718 B
C++

// A simple program that outputs the square root of a number
#include <iostream>
#include <string>
#include "Addition.h"
#include "SquareRoot.h"
int main(int argc, char* argv[])
{
if (argc < 2) {
std::cout << "Usage: " << argv[0] << " number" << std::endl;
return 1;
}
// convert input to double
const double inputValue = std::stod(argv[1]);
// calculate square root
const double sqrt = MathFunctions::sqrt(inputValue);
std::cout << "The square root of " << inputValue << " is " << sqrt
<< std::endl;
// calculate sum
const double sum = MathFunctions::add(inputValue, inputValue);
std::cout << inputValue << " + " << inputValue << " = " << sum << std::endl;
return 0;
}