使用jupyter notebook编写一个程序,要求用户输入三个整数,程序输出这三个整数的乘积和乘积的平方根。
时间: 2024-05-02 20:21:34 浏览: 124
噪声检测系统_噪声检测_5个小程序
5星 · 资源好评率100%
下面是代码实现:
```python
a = int(input("请输入第一个整数:"))
b = int(input("请输入第二个整数:"))
c = int(input("请输入第三个整数:"))
product = a * b * c # 三个整数的乘积
sqrt_product = pow(product, 0.5) # 三个整数的乘积的平方根
print("三个整数的乘积为:", product)
print("三个整数的乘积的平方根为:", sqrt_product)
```
运行程序后,会提示用户输入三个整数,输入完成后程序会依次计算三个整数的乘积和乘积的平方根,并输出结果。
阅读全文