How to convert double value into int value in Kotlin? All Questions › Category: Kotlin › How to convert double value into int value in Kotlin? 0 Vote Up Vote Down chetan shidling asked 4 years ago I need short information. 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago Here is the code: fun main(args : Array<String>){var finalAmt = CalcAmount(553)print(“The Amount is $finalAmt”)} fun CalcAmount(amt : Int) : Int{return (amt + amt*0.04).toInt();} Output: The Amount is 575