编写Python程序实现:输入圆的半径,输出圆的面积。
import math
r=float(input())
print(s)
下列语句不可以完善程序,实现相关功能的是?
s=math.pi*math.pow(r,2)
s=math.pi*r**2
s=math.pi*r*r
s=pi*r*r