5的平方根,精确到小数点后500位
这个好像要一步一步来的
,有没有大神用C++代码打出来?
,有没有大神用C++代码打出来?
2013-07-20 17:13
2013-07-20 19:33
2013-07-20 20:45

程序代码:#include<iostream>
#include<math.h>
#include<iomanip>
using namespace std;
int main(){
cout<<fixed<<setprecision(500);
cout<<sqrt(5)<<endl;
return 0;
}
2013-07-21 23:33
#include<iostream>
2013-07-21 23:49

2018-08-07 15:19