Here you can find the source of moneyChange(String money)
private static String moneyChange(String money)
//package com.java2s; //License from project: Apache License public class Main { private static String moneyChange(String money) { int index = money.indexOf("."); String head = money.substring(0, index); String end = money.substring(index + 1); if (head.equals("0")) { if (end.startsWith("0")) { return Integer.parseInt(end) + ""; }//from w w w . j a v a 2 s. c o m return end; } return head + end; } }