作业帮 > 数学 > 作业

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

来源:学生作业帮 编辑:作业帮 分类:数学作业 时间:2024/07/08 10:45:59
圆的面积为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