Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
double d = 0.0d;
String ds = d +"";
String[] dss = ds.split(".");
if (dss[1].equals("0")) {
// just a n.0 number
} else {
// has some other format like n.013581
}