0
可能重複:
How to format a number with padding in Erlang如何轉換函數結果?
我開發這個功能:
check() ->
case get_val(Text, H) of
{ok, {Montant}} -> io:format("~s", [Montant]);
{error, pas_echeance} -> io:format("erreur")
end.
該功能顯示Montant,這是Montant的例子:45
我目標是將此值「45」(w hich表示Tunisian dinars)的「45000」形式(所以我會有突尼斯毫米 - 每個第納爾包含1000毫米)。
貨幣轉換乘這似乎是非常適合明確的乘法, th – user425720
wtf重複嗎?這是初學者的問題,但仍然 - 這裏你在最後,在數字前面的「原始」添加零。 – user425720