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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to convert string to int in Kotlin

2 Answers

0 votes
fun main(args: Array < String > )
{
    val str = "8921"
    
    val num = str.toInt()
 
    print(num)
}





/*
run:
  
8921
 
*/

 





answered Oct 20, 2021 by avibootz
0 votes
fun main(args: Array < String > )
{
    val str = "8921"
    
    val num = str.toInt()
 
    print(num + 12)
}





/*
run:
  
8933
 
*/

 





answered Oct 20, 2021 by avibootz

Related questions

2 answers 104 views
104 views asked Oct 20, 2021 by avibootz
1 answer 77 views
77 views asked Oct 20, 2021 by avibootz
1 answer 127 views
127 views asked Oct 20, 2021 by avibootz
1 answer 151 views
151 views asked Oct 20, 2021 by avibootz
1 answer 103 views
103 views asked Sep 27, 2020 by avibootz
...