#include #include using namespace std; // illustrates use of math function returning a value int main() { double value; cout << "enter a positive number "; cin >> value; cout << "square root of " << value << " = " << sqrt(value) << endl; return 0; }