freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-255-rounded-square-...

56 lines
1.7 KiB
Markdown
Raw Normal View History

---
id: 5900f46d1000cf542c50ff7f
challengeType: 5
videoUrl: ''
localeTitle: 问题255圆角平方根
---
## Description
<section id="description">我们将正整数n的圆角平方根定义为n的平方根四舍五入到最接近的整数。 <p>以下过程基本上是Heron的方法适用于整数运算找到n的舍入平方根设d是数字n的位数。如果d为奇数则设置x0 = 2×10d-1/ 2。如果d是偶数则设置x0 = 7×10d-2/ 2。重复 </p><p>直到xk + 1 = xk。 </p><p>举个例子让我们找到n = 4321.n的圆角平方根有4个数字所以x0 = 7×104-2/2 = 70.由于x2 = x1我们在这里停止。因此经过两次迭代后我们发现4321的圆角平方根为66实际平方根为65.7343137 ......)。 </p><p>使用此方法时所需的迭代次数非常低。例如我们可以找到5位整数的圆角平方根10,000≤n≤99,999平均迭代次数为3.2102888889平均值四舍五入到10位小数</p><p>使用上述过程找到14位数字的圆角平方根1013≤n&lt;1014所需的平均迭代次数是多少将您的答案四舍五入到小数点后10位。 </p><p>注意符号⌊x⌋和⌈x⌉分别代表楼层功能和天花板功能。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler255()</code>应返回4.447401118。
testString: assert.strictEqual(euler255(), 4.447401118);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler255() {
// Good luck!
return true;
}
euler255();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>