(String[] args)
| 74 | } |
| 75 | |
| 76 | public static void main (String[] args) |
| 77 | { |
| 78 | double[] tests = {0.0, -333.333, 4444.4444, -55555.55555, 666666.666666, -7777777.7777777, 88888888.88888888, |
| 79 | -0.1, 0.02, -0.003, 0.0004, -0.00005, 0.000006, -0.0000007, 0.00000008, -0.000000009}; |
| 80 | GFormat g = new GFormat("7.5"); |
| 81 | for (int i=0; i < tests.length; i++) |
| 82 | System.out.println("g-Formatted form of "+tests[i]+" is "+g.format(tests[i])); |
| 83 | } |
| 84 | } |