gpt4 book ai didi

java - 如何转义 System.out.format 中的 ',' 字符?

转载 作者:行者123 更新时间:2023-12-01 17:02:18 29 4
gpt4 key购买 nike

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

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

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

最佳答案

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

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

关于java - 如何转义 System.out.format 中的 ',' 字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26870677/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com