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,844 questions

51,765 answers

573 users

How to count the trailing zeros in a binary number using Scala

1 Answer

0 votes
def countTrailingZeros(n: Int): Int = {
  if (n == 0) 32 // Special case for 0, as it has all bits as 0
  else {
    var count = 0
    var num = n
    while ((num & 1) == 0) {
      count += 1
      num >>= 1
    }
    
    count
  }
}

// 80 binary = 1010000
println(countTrailingZeros(80))




/*
run:
 
4
 
*/
 

 



answered Jul 23, 2025 by avibootz
...