View Code of Problem 74

#include<cstdio>
#include<cmath>
#include<iostream>
using namespace std; 
int main(){
	double n;
	cin >> n;
	n=sqrt(n);
	printf("%0.3f",n); 
}

Double click to view unformatted code.


Back to problem 74