2

在埃菲尔,你是怎么弄到这个数字的。

118.1999999999999

打印到:

118.20 

在其他语言中只是 printf 的问题,但在 Eiffel 似乎没有办法轻松做到这一点。

4

2 回答 2

3

您应该使用 FORMAT_DOUBLE 类

local
    fd: FORMAT_DOUBLE
do
    create fd.make (5, 3)
    print (fd.formatted ({REAL_64} 12345.6789)) --> "12345.679"
    print (fd.formatted ({REAL_64} 12345.6)) --> "12345.600"
    print (fd.formatted ({REAL_64} 0.6)) --> "0.600"

    create fd.make (10, 2)
    fd.right_justify
    print (fd.formatted ({REAL_64} 1.678)) --> "      1.68"

    create fd.make (20, 3)
    fd.right_justify
    print ("[" + fd.formatted ({REAL_64} 12345.6789) + "]%N") --> [           12345.679]
    fd.left_justify
    print ("[" + fd.formatted ({REAL_64} 12345.6789) + "]%N") --> [12345.679           ]
    fd.center_justify
    print ("[" + fd.formatted ({REAL_64} 12345.6789) + "]%N") --> [      12345.679     ]

等等 ...

还有一组模拟“printf”的类,您可以在http://www.amalasoft.com/downloads.htm找到它们。 我自己没有使用过它们,但这可能会满足您的需求。

这是使用 ECMA Eiffel(我不确定上一个响应来自哪里,但 DOUBLE 没有这样的函数 `to_string_format'。而 DOUBLE 是 REAL_64 的旧名称

于 2012-07-02T09:21:00.493 回答
0

例如:


class DOBLE

creation
    make

feature
    make is
      local
          n: DOUBLE
          output: STRING
      do
          n := 118.1999999999999
          output := n.to_string_format(2) -- 2 digits in fractionnal part
          std_output.put_string(output + "%N")
      end
end
于 2010-09-18T23:41:41.753 回答