chore(learn): Applied MDX format to Chinese curriculum files (#40462)
This commit is contained in:
@ -1,64 +1,25 @@
|
||||
---
|
||||
id: 5900f4aa1000cf542c50ffbc
|
||||
title: 问题317:鞭炮
|
||||
challengeType: 5
|
||||
videoUrl: ''
|
||||
title: 问题317:鞭炮
|
||||
---
|
||||
|
||||
## Description
|
||||
<section id="description">
|
||||
爆竹在离地面100 m的高度处爆炸。 它分为许多非常小的碎片,它们向各个方向移动。 它们都具有相同的初始速度20 m / s。
|
||||
# --description--
|
||||
|
||||
爆竹在离地面100 m的高度处爆炸。 它分为许多非常小的碎片,它们向各个方向移动。 它们都具有相同的初始速度20 m / s。
|
||||
|
||||
我们假设碎片在没有空气阻力的情况下在g = 9.81 m / s2的均匀重力场中运动。
|
||||
|
||||
找到碎片到达地面之前通过的区域的体积(单位:m3)。 将答案四舍五入到小数点后四位。
|
||||
|
||||
找到碎片到达地面之前通过的区域的体积(单位:m3)。
|
||||
将答案四舍五入到小数点后四位。
|
||||
</section>
|
||||
# --hints--
|
||||
|
||||
## Instructions
|
||||
<section id="instructions">
|
||||
</section>
|
||||
|
||||
## Tests
|
||||
<section id='tests'>
|
||||
|
||||
```yml
|
||||
tests:
|
||||
- text: <code>euler317()</code>应该返回1856532.8455。
|
||||
testString: assert.strictEqual(euler317(), 1856532.8455);
|
||||
|
||||
```
|
||||
|
||||
</section>
|
||||
|
||||
## Challenge Seed
|
||||
<section id='challengeSeed'>
|
||||
|
||||
<div id='js-seed'>
|
||||
`euler317()`应该返回1856532.8455。
|
||||
|
||||
```js
|
||||
function euler317() {
|
||||
// Good luck!
|
||||
return true;
|
||||
}
|
||||
|
||||
euler317();
|
||||
|
||||
assert.strictEqual(euler317(), 1856532.8455);
|
||||
```
|
||||
|
||||
</div>
|
||||
# --solutions--
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
## Solution
|
||||
<section id='solution'>
|
||||
|
||||
```js
|
||||
// solution required
|
||||
```
|
||||
|
||||
/section>
|
||||
|
Reference in New Issue
Block a user