FileDocCategorySizeDatePackage
PercentTable.javaAPI DocExample307Wed Feb 15 08:06:16 GMT 2006None

PercentTable

public class PercentTable extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

    NumberFormat percentFormat = NumberFormat.getPercentInstance(Locale.ENGLISH);
    for (double d = 0.0; d <= 1.0; d += 0.005) {
      System.out.println(percentFormat.format(d));
    }