提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用百分比格式
import java.text.NumberFormat; /* 来自 *n o w j a v a . c o m*/ public class Main { public static void main(String[] args) { double grade = .92; NumberFormat pf = NumberFormat.getPercentInstance(); System.out.println(pf.format(grade)); } }