• 2022-05-30 问题

    下面代码的执行结果是‪‪‪‪‪‫‪‪‪‪‪‫‪‪‪‪‪‫‪‪‪‪‪‫‪‪‪‪‪‪‫。()print(pow(3,0.5)*pow(3,0.5)==3) A: False B: pow(3,0.5)*pow(3,0.5)==3 C: True D: 3

    下面代码的执行结果是‪‪‪‪‪‫‪‪‪‪‪‫‪‪‪‪‪‫‪‪‪‪‪‫‪‪‪‪‪‪‫。()print(pow(3,0.5)*pow(3,0.5)==3) A: False B: pow(3,0.5)*pow(3,0.5)==3 C: True D: 3

  • 2022-05-30 问题

    下面代码的执行结果是print(pow(3,0.5)*pow(3,0.5)==3) A: True B: False C: 3 D: pow(3,0.5)*pow(3,0.5) == 3

    下面代码的执行结果是print(pow(3,0.5)*pow(3,0.5)==3) A: True B: False C: 3 D: pow(3,0.5)*pow(3,0.5) == 3

  • 2022-05-30 问题

    下面代码的执行结果是()。print(pow(3,0.5)*pow(3,0.5)==3) A: Y B: pow(3,0.5)*pow(3,0.5)==3 C: 3 D: N

    下面代码的执行结果是()。print(pow(3,0.5)*pow(3,0.5)==3) A: Y B: pow(3,0.5)*pow(3,0.5)==3 C: 3 D: N

  • 2022-05-30 问题

    print(pow(3,0.5)*pow(3,0.5)==3)哪个选项是上述程序的执行结果? A: True B: False C: 3 D: pow(3,0.5)*pow(3,0.5)==3

    print(pow(3,0.5)*pow(3,0.5)==3)哪个选项是上述程序的执行结果? A: True B: False C: 3 D: pow(3,0.5)*pow(3,0.5)==3

  • 2022-05-30 问题

    69.下面代码的执行结果是()。 [br][/br] print(pow(3,0.5)*pow(3,0.5)==3) A: 3 B: pow(3,0.5)*pow(3,0.5)==3 C: True D: False

    69.下面代码的执行结果是()。 [br][/br] print(pow(3,0.5)*pow(3,0.5)==3) A: 3 B: pow(3,0.5)*pow(3,0.5)==3 C: True D: False

  • 2022-05-30 问题

    下面代码的执行结果是。 print(pow(3,0.5)*pow(3,0.5)==3)

    下面代码的执行结果是。 print(pow(3,0.5)*pow(3,0.5)==3)

  • 2022-10-25 问题

    以下用库函数pow()求4的平方根的语句中完全正确的是( )。 A: int r = pow(4, 0.5); B: int r = pow(4, 1/2); C: double r = pow(4, 1/2); D: double r = pow(4, 1.0/2)

    以下用库函数pow()求4的平方根的语句中完全正确的是( )。 A: int r = pow(4, 0.5); B: int r = pow(4, 1/2); C: double r = pow(4, 1/2); D: double r = pow(4, 1.0/2)

  • 2022-07-27 问题

    将[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=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))

  • 2022-06-06 问题

    求2的平方根可以采用的表达式是()。 A: sqrt(2.0) B: pow(2,1.0/2) C: pow(2,1/2) D: pow(2,0.5)

    求2的平方根可以采用的表达式是()。 A: sqrt(2.0) B: pow(2,1.0/2) C: pow(2,1/2) D: pow(2,0.5)

  • 2022-06-08 问题

    以下表达式中,有两个的计算结果是相同的,请挑选出来 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)

    以下表达式中,有两个的计算结果是相同的,请挑选出来 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)

  • 1 2 3 4 5 6 7 8 9 10