一名蒟蒻
一名蒟蒻
全部文章
题解
归档
标签
去牛客网
登录
/
注册
一名蒟蒻的博客
全部文章
/ 题解
(共1篇)
题解 | #平方根#
方法一: ```// 牛顿送代法 #include<bits/stdc++.h> using namespace std; int n; double f( int m ) { double last = m; double ans = m; ans = ( ans + m ...
C++
2023-10-19
1
228