欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

69. x 的平方根

程序员文章站 2024-03-20 17:36:34
...
#include <iostream>
#include <algorithm>
#include "string"
#include "vector"
#include "stack"
using namespace std;


int mySqrt(int x)
{
	return int(sqrt(x));
}


int main()
{
	cout<<mySqrt(8);
	
	system("pause");
	return 0;
}