View Code of Problem 74

#include<bits/stdc++.h>
using namespace std;
#define max 100000

int main(){
	int n;
	double a ;
	cin>>n;
	a =sqrt(n);
	printf("%.3lf",a);
	return 0;
}

Double click to view unformatted code.


Back to problem 74