Q:

Scala program to filter the loop counter using if condition in for loop

0

Here, we will filter the loop counter using the if condition in for loop and print even numbers till 10 on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to filter the loop counter using the if condition in the for loop is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to filter the loop counter using 
// "if" condition in "for" loop

object Sample {  
    def main(args: Array[String]) {  
        for( cnt <- 1 to 10 if cnt%2==0 )
        {
            printf("%d ",cnt);
        }
        println()
    }
}  

Output:

2 4 6 8 10 

Explanation:

In the above program, we used an object-oriented approach to create the program. We created an object Sample. We defined main() function. The main() function is the entry point for the program.

In the main() function, we used the if keyword in the for loop to filter the loop counter variable. Here, we used the modulus operator "%" to print even numbers on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now