]> git.somenet.org - pub/jan/lsdc.git/blob - src/at/ac/tuwien/lsdc/util/NumberUtils.java
Fixed: Output File OK
[pub/jan/lsdc.git] / src / at / ac / tuwien / lsdc / util / NumberUtils.java
1 package at.ac.tuwien.lsdc.util;
2
3 import java.math.RoundingMode;
4 import java.text.DecimalFormat;
5
6 public class NumberUtils {
7
8         public static double roundDouble(double val) {
9                 return Math.floor(val * 100) / 100;
10         }
11         
12 }