我有一些项目,我想将它们划分到一些桶中,这样每个桶都比上一个桶大一些。
items = 500
chunks = 5
increment = 0.20
{- find the proportions -}
sizes = take chunks (iterate (+increment) 1)
base = sum sizes / items
buckets = map (base *) sizes
main = print buckets
我相信有一种数学上更优雅的方法来做到这一点,但这不是我的问题。最后一步总是用科学记数法打印出来。
如何得到纯十进制输出?
> putStrLn $ Numeric.showFFloat Nothing 1e40 ""
10000000000000000000000000000000000000000.0
尝试打印。例如:
> import Text.Printf
> printf "%dn" (23::Int)
23
> printf "%s %sn" "Hello" "World"
Hello World
> printf "%.2fn" pi
3.14