I am invoking a method called \"calculateStampDuty\", which will return the
amount of stamp duty to be paid on a property. The percentage calculation works
fine, and returns
public class RemoveDecimalPoint{
public static void main(String []args){
System.out.println(""+ removePoint(250022005.60));
}
public static String removePoint(double number) {
long x = (long) number;
return x+"";
}
}