Skip to navigation
Java round
02.05.22
public static double round(double value, int places) { if (places < 0) throw new IllegalArgumentException(); long factor = (long) Math.pow(10, places); value = value * factor; long tmp = Math.round(value); return (double) tmp / factor; }
Reply
Anonymous
Information Epoch 1762544860
Solving the next 5% probably costs more than the previous 90%.
Home
Notebook
Contact us