Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,892 questions

51,823 answers

573 users

How to print a float number with 2 decimal places in Kotlin

3 Answers

0 votes
fun main(args: Array<String>) {
	val number = 123.45678
	val formattedNumber = String.format("%.2f", number)

	println(formattedNumber)  
}
 
 
    
/*
run:
 
123.46

*/

 



answered Mar 3, 2025 by avibootz
0 votes
import java.text.DecimalFormat

fun main() {
	val number = 123.45678
	val decimalFormat = DecimalFormat("#.00")
	val formattedNumber = decimalFormat.format(number)
	
    println(formattedNumber)  // Output: 123.46
}
 
 
    
/*
run:
 
123.46

*/

 



answered Mar 3, 2025 by avibootz
0 votes
import kotlin.math.roundToInt

fun main() {
	val number = 123.45678
	val roundedNumber = (number * 100).roundToInt() / 100.0
	
    println("%.2f".format(roundedNumber))  
}
 
    
/*
run:
 
123.46

*/

 



answered Mar 3, 2025 by avibootz
edited Mar 4, 2025 by avibootz

Related questions

1 answer 189 views
3 answers 148 views
3 answers 117 views
2 answers 96 views
1 answer 106 views
2 answers 109 views
3 answers 350 views
...