已知直角三角形两直角边为12、14,求斜边。以下写法可行的有
A: math.sqrt(12 ** 2 + 14 ** 2)
B: (12 ** 2 + 14 ** 2) ** 0.5
C: math.sqrt(pow(12,2) + pow(14,2))
D: math.sqrt(math.pow(12,2) + math.pow(14,2))
A: math.sqrt(12 ** 2 + 14 ** 2)
B: (12 ** 2 + 14 ** 2) ** 0.5
C: math.sqrt(pow(12,2) + pow(14,2))
D: math.sqrt(math.pow(12,2) + math.pow(14,2))
举一反三
- 将[img=83x51]17de8a0fc777b0b.png[/img]表示为程序所能接受的表达式,正确的为 A: sqrt(pow(x, 2) / (pow(x, 2) + 1)) B: sqrt(pow(2, x) / (pow(2, x) + 1)) C: pow(sqrt(2, x) / (sqrt(2, x) + 1)) D: pow(sqrt(x, 2) / (sqrt(x, 2) + 1))
- 计算[img=127x40]1803177bfc8c3e2.png[/img]的程序表达为 A: sqrt(sin alpha ^ 2 + cos beta ^ 2) B: sqrt(sin^2(alpha) + cos^2(beta)) C: sqrt(pow(sin(alpha), 2) + pow(cos(beta), 2)) D: sqrt pow(sin(alpha), 2) + pow(cos(beta), 2)
- 求2的平方根可以采用的表达式是()。 A: sqrt(2.0) B: pow(2,1.0/2) C: pow(2,1/2) D: pow(2,0.5)
- 以下表达式中,有两个的计算结果是相同的,请挑选出来 A: 1 / sqrt(sin(x) * sin(x) + cos(y) * cos(y)) B: sqrt(pow(sin(x), 2) + pow(cos(y), 2)) C: pow(sin(x) * sin(x) + cos(y) * cos(y), 0.5) D: pow(pow(sin(x), 2) + pow(cos(y), 2), 2)
- 若要计算x+y的平方根,正确的写法为( )。 A: sqrt(x+y) B: sqrt(x+y,0.5) C: pow(x+y) D: pow(x+y,2)