Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String getPrice(float price) {
float mPrice = price / 100;
if (mPrice == (int) mPrice) {
return String.valueOf((int) mPrice);
} else {
return String.valueOf(mPrice);
}
}
}