View Code of Problem 74

#include<iostream>
#include<iomanip>
#include<cmath>
 
using namespace std;
 
int main() {
	long double x;
	cin >> x;
	cout << fixed << setprecision(3) << sqrt(x);
}

Double click to view unformatted code.


Back to problem 74