* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
2.8 KiB
2.8 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
56533eb9ac21ba0edf2244dc | Chaining If Else Statements | 1 | 链接如果其他声明 |
Description
if/else
语句可以链接在一起以用于复杂的逻辑。这是多个链式if
/ else if
语句的伪代码 : if( condition1 ){
语句1
} else if( condition2 ){
语句2
} else if( condition3 ){
声明3
。 。 。
} else {
statementN
}
Instructions
if
/ else if
语句以满足以下条件: num < 5
- return“Tiny” num < 10
- 返回“Small” num < 15
- 返回“中” num < 20
- 返回“Large” num >= 20
- 返回“巨大” Tests
tests:
- text: 你应该至少有四个<code>else</code>语句
testString: assert(code.match(/else/g).length > 3);
- text: 你应该至少有四个<code>if</code>语句
testString: assert(code.match(/if/g).length > 3);
- text: 你应该至少有一个<code>return</code>语句
testString: assert(code.match(/return/g).length >= 1);
- text: <code>testSize(0)</code>应该返回“Tiny”
testString: assert(testSize(0) === "Tiny");
- text: <code>testSize(4)</code>应该返回“Tiny”
testString: assert(testSize(4) === "Tiny");
- text: <code>testSize(5)</code>应返回“Small”
testString: assert(testSize(5) === "Small");
- text: <code>testSize(8)</code>应该返回“Small”
testString: assert(testSize(8) === "Small");
- text: <code>testSize(10)</code>应该返回“Medium”
testString: assert(testSize(10) === "Medium");
- text: <code>testSize(14)</code>应返回“Medium”
testString: assert(testSize(14) === "Medium");
- text: <code>testSize(15)</code>应该返回“Large”
testString: assert(testSize(15) === "Large");
- text: <code>testSize(17)</code>应该返回“Large”
testString: assert(testSize(17) === "Large");
- text: <code>testSize(20)</code>应该返回“巨大”
testString: assert(testSize(20) === "Huge");
- text: <code>testSize(25)</code>应该返回“巨大”
testString: assert(testSize(25) === "Huge");
Challenge Seed
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);
Solution
// solution required