Here you can find the source of roundedSatisfaction(double value)
private static String roundedSatisfaction(double value)
//package com.java2s; //License from project: Apache License public class Main { private static String roundedSatisfaction(double value) { return String.format("%1$#.2f", value); }//w w w. ja v a 2 s.co m }