Haskell: Force floats to have two decimals

删除回忆录丶 提交于 2019-12-18 11:44:15

问题


Using the following code snippet:

(fromIntegral 100)/10.00

Using the Haskell '98 standard prelude, how do I represent the result with two decimals?

Thanks.


回答1:


Just for the record:

import Numeric 
formatFloatN floatNum numOfDecimals = showFFloat (Just numOfDecimals) floatNum ""



回答2:


You can use printf :: PrintfType r => String -> r from Text.Printf:

Prelude> import Text.Printf
Prelude Text.Printf> printf "%.2f\n" (100 :: Float)
100.00
Prelude Text.Printf> printf "%.2f\n" $ fromIntegral 100 / 10.00
10.00

%f formats the second argument as a floating point number. %.2f indicates that only two digits behind the decimal point should be printed. \n represents a newline. It is not strictly necessary for this example.

Note that this function returns a value of type String or IO a, depending on context. Demonstration:

Prelude Text.Printf> printf "%.2f" (1337 :: Float) ++ " is a number"
"1337.00 is a number"

In this case printf returns the string "1337.00", because the result is passed as an argument to (++), which is a function that expects list arguments (note that String is the same as [Char]). As such, printf also behaves as sprintf would in other languages. Of course a trick such as appending a second string is not necessary. You can just explicitly specify the type:

Prelude Text.Printf> printf "%.2f\n" (1337 :: Float) :: IO a  
1337.00
Prelude Text.Printf> printf "%.2f\n" (1337 :: Float) :: String
"1337.00\n"


来源:https://stackoverflow.com/questions/1559590/haskell-force-floats-to-have-two-decimals

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!