View Code of Problem 74

#include<iostream>
#include<cstring>
#include<math.h>
using namespace std;
int main(){
	int t;
	scanf("%d",&t);
	printf("%.3f\n",sqrt(t));
	return 0;
}

Double click to view unformatted code.


Back to problem 74