How to remove decimal values from a value of type 'double' in Java

后端 未结 19 1959
孤独总比滥情好
孤独总比滥情好 2020-12-08 09:26

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

19条回答
  •  臣服心动
    2020-12-08 10:01

        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+"";
            }
    
        }
    

提交回复
热议问题