提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用(标志将括号括在负数周围。
public class Main { public static void main(String[] args) {/*from 时 代 J a v a 公 众 号 - N o w J a v a . c o m*/ System.out.printf("%(d\n", 50); System.out.printf("%(d\n", -50); System.out.printf("%(.1e\n", -50.0); } }