Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String dropDecimalIfRoundNumber(float val) {
        if (val == 0) {
            return "0";
        } else if (val % (int) val == 0) {
            return Integer.toString((int) val);
        } else {
            return Float.toString(val);
        }
    }
}