Java tutorial
//package com.java2s; public class Main { public static String getStringFrom(double total) { return String.format("%.2f", total); } }