Get a percent representation of a double and decimal places (0.53) would return 53% @param i the double @param p the number of decimal points @return a string
(double i, int p)
| 1105 | * @return a string |
| 1106 | */ |
| 1107 | public static String pc(double i, int p) { |
| 1108 | return f(i * 100.0, p) + "%"; |
| 1109 | } |
| 1110 | |
| 1111 | /** |
| 1112 | * Get a percent representation of a float and decimal places (0.53) would |
no test coverage detected