w3resource

Scala Programming: Find the even and odd numbers from a given list


Write a Scala program to find the even and odd numbers from a given list.

Sample Solution:

Scala Code:

object Scala_List
{
  def main(args: Array[String]): Unit = 
 {
   val nums = List(1, 2, 3, 4, 5, 7, 9, 11, 14, 12, 16)
   println("Original list:")
   println(nums)   
   val even_nums = nums.filter(_ % 2 ==0) 
   println("Even number of the said list:")
   println(even_nums)
   val odd_nums = nums.filter(_ % 2 != 0) 
   println("Odd number of the said list:")
   println(odd_nums)   
  }
}

Sample Output:

Original list:
List(1, 2, 3, 4, 5, 7, 9, 11, 14, 12, 16)
Even number of the said list:
List(2, 4, 14, 12, 16)
Odd number of the said list:
List(1, 3, 5, 7, 9, 11)

Go to:


PREV : Write a Scala program to merge (concatenate) given lists.
NEXT : Write a Scala program to find the nth element of a given list.

Scala Code Editor :

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.