以下程序的输出结果为:print(pow(3, pow(3, 3), 10000))
A: 3
B: 27
C: 4987
D: 10000
A: 3
B: 27
C: 4987
D: 10000
举一反三
- 以下程序的输出结果为: print(pow(3, pow(3, 3), 10000))
- 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) 哪个选项是上述程序的执行结果?
- 下面代码的执行结果是。()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: True B: False C: 3 D: pow(3,0.5)*pow(3,0.5) == 3