圆的面积为S 用写出求圆半径的fox的表达式

问题描述:

圆的面积为S 用写出求圆半径的fox的表达式

fox的表达式 (这个我不是太理解,也不知道你真正的意思!)
这里我就按你求半径的
1)
Option Explicit
Private Const Pi = 3.141592654
Private Const S = 25'面积
Private Const fox = S / Pi ^ 2'半径
2)如果你的fox是一个function
function fox(S as double) as double
fox=s/cdbl(3.141592654) ^2
end function