/* root2.cpp To compute the root of 5 written for Programming in Physics */ #include #include using namespace std; int main() { cout << sqrt(5.) << endl; // root of 5 }