2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: 56533eb9ac21ba0edf2244dc
|
|
|
|
challengeType: 1
|
2020-04-29 18:29:13 +08:00
|
|
|
videoUrl: 'https://scrimba.com/c/caeJgsw'
|
|
|
|
forumTopicId: 16772
|
2020-10-01 17:54:21 +02:00
|
|
|
title: 多个 if else 语句
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
2020-04-29 18:29:13 +08:00
|
|
|
<section id='description'>
|
|
|
|
<code>if/else</code>语句串联在一起可以实现复杂的逻辑,这是多个<code>if/else if</code>语句串联在一起的伪代码:
|
|
|
|
|
|
|
|
```js
|
|
|
|
if (condition1) {
|
|
|
|
statement1
|
|
|
|
} else if (condition2) {
|
|
|
|
statement2
|
|
|
|
} else if (condition3) {
|
|
|
|
statement3
|
|
|
|
. . .
|
|
|
|
} else {
|
|
|
|
statementN
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Instructions
|
2020-04-29 18:29:13 +08:00
|
|
|
<section id='instructions'>
|
|
|
|
把<code>if</code>/<code>else if</code>语句串联起来实现下面的逻辑:
|
|
|
|
<code>num < 5</code>- return "Tiny"<br><code>num < 10</code>- return "Small"<br><code>num < 15</code>- return "Medium"<br><code>num < 20</code>- return "Large"<br><code>num >= 20</code> - return "Huge"
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
tests:
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: 你应该有至少 4 个<code>else</code>表达式。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(code.match(/else/g).length > 3);
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: 你应该有至少 4 个<code>if</code>表达式。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(code.match(/if/g).length > 3);
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: 你应该有至少 1 个<code>return</code>表达式。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(code.match(/return/g).length >= 1);
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(0)</code>应该返回 "Tiny"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(0) === "Tiny");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(4)</code>应该返回 "Tiny"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(4) === "Tiny");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(5)</code>应该返回 "Small"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(5) === "Small");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(8)</code>应该返回 "Small"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(8) === "Small");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(10)</code>应该返回 "Medium"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(10) === "Medium");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(14)</code>应该返回 "Medium"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(14) === "Medium");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(15)</code>应该返回 "Large"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(15) === "Large");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(17)</code>应该返回 "Large"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(17) === "Large");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(20)</code>应该返回 "Huge"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(20) === "Huge");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>testSize(25)</code>应该返回 "Huge"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(testSize(25) === "Huge");
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
function testSize(num) {
|
|
|
|
// Only change code below this line
|
|
|
|
|
|
|
|
|
|
|
|
return "Change Me";
|
|
|
|
// Only change code above this line
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change this value to test
|
|
|
|
testSize(7);
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
2020-04-29 18:29:13 +08:00
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
```js
|
2020-04-29 18:29:13 +08:00
|
|
|
function testSize(num) {
|
|
|
|
if (num < 5) {
|
|
|
|
return "Tiny";
|
|
|
|
} else if (num < 10) {
|
|
|
|
return "Small";
|
|
|
|
} else if (num < 15) {
|
|
|
|
return "Medium";
|
|
|
|
} else if (num < 20) {
|
|
|
|
return "Large";
|
|
|
|
} else {
|
|
|
|
return "Huge";
|
|
|
|
}
|
|
|
|
}
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
2020-04-29 18:29:13 +08:00
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
</section>
|