haskell where使用示例代码

代码语言:haskell

所属分类:其他

代码描述:haskell where使用示例代码

代码标签: where 示例

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

roots :: (Float, Float, Float) -> (Float, Float)  
roots (a,b,c) = (x1, x2) where 
   x1 = e + sqrt d / (2 * a) 
   x2 = e - sqrt d / (2 * a) 
   .........完整代码请登录后点击上方下载按钮下载查看

网友评论0