表达式中的括号
Brackets in Expressions
会用小括号、中括号或大括号来写数值表达式,并能计算含有这些括号的表达式。
Use parentheses, brackets, or braces in numerical expressions and evaluate expressions containing these grouping symbols
学习证据 / Evidence
- 先算出括号里的部分,再计算 3 × (4 + 5) 的值。
- 计算带有嵌套括号的式子 {2 × [3 + (7 − 1)]}。
- 在一个表达式中插入括号,使它等于目标值。
- Evaluate 3 × (4 + 5) by computing inside the parentheses first
- Evaluate {2 × [3 + (7 − 1)]} with nested grouping symbols
- Insert parentheses into an expression to make it equal a target value
评估问题 / Assessment
{{name}} 能看着“3 × (4 + 5)”这个式子,先算括号里的部分,得到“3 × 9 = 27”,而不是直接从左往右乘吗?
Can {{name}} look at '3 × (4 + 5)' and work out the brackets first — getting '3 × 9 = 27' — rather than just multiplying left to right?