我如何逃避',' System.out.format中的字符?

时间:2014-11-11 17:22:14

标签: java formatting

我想使用System.out.format输出两个用逗号分隔的数字。我试图用%来逃避它,但它没有帮助。

目标输出应采用(0.92,0.91)

的形式
System.out.format("(%.2f% %.2f)%n", x, fx);
                         ^--- I want to add a ',' character here

1 个答案:

答案 0 :(得分:5)

您不必以格式转义逗号。只需在格式中放置一个逗号,旁边没有百分号。

System.out.format("(%.2f,%.2f)%n", x, fx);