Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String decimalFormat(float f) {
double d = (double) f;
if (d == (long) d)
return String.format("%d", (long) d);
else
return String.format("%s", d);
}
}