在Java中用括号格式化负数输出
可以使用Formatter对象显示负数输出-
Formatter f = new Formatter();f.format("%12.2f", -7.598);
System.out.println(f);
尝试以下给定的代码来格式化带括号的负数输出-
Formatter f = new Formatter();f.format("%(d", -50);
System.out.println(f);
以下是一个例子-
示例
import java.util.Formatter;public class Demo {
public static void main(String args[]) {
Formatter f = new Formatter();
f.format("% d", 50);
System.out.println(f);
//括号内的负数
f = new Formatter();
f.format("%(d", -50);
System.out.println(f);
}
}
输出结果
50(50)
以上是 在Java中用括号格式化负数输出 的全部内容, 来源链接: utcz.com/z/341074.html