YAPC::EU 2018 Glasgow Update!
This commit is contained in:
parent
22f33d4004
commit
4e2d22a71d
1170 changed files with 15042 additions and 3047 deletions
|
|
@ -1,10 +1,16 @@
|
|||
import Control.Monad (replicateM, mapM_)
|
||||
|
||||
f x = (abs x) ** 0.5 + 5 * x ** 3
|
||||
f :: Floating a => a -> a
|
||||
f x = sqrt (abs x) + 5 * x ** 3
|
||||
|
||||
main :: IO ()
|
||||
main = do
|
||||
putStrLn "Enter 11 numbers for evaluation"
|
||||
x <- replicateM 11 $ readLn
|
||||
mapM_ ((\x -> if x > 400
|
||||
then putStrLn "OVERFLOW"
|
||||
else print x). f) $ reverse x
|
||||
putStrLn "Enter 11 numbers for evaluation"
|
||||
x <- replicateM 11 readLn
|
||||
mapM_
|
||||
((\x ->
|
||||
if x > 400
|
||||
then putStrLn "OVERFLOW"
|
||||
else print x) .
|
||||
f) $
|
||||
reverse x
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue