

Let’s explore a few examples using an Array: In the above example, the loop will run from 6 to 1 range as the method here is downTo which runs from higher to lower value and will skip the value because of step 2 and will print 642 Print("loop prints(a in 6 downTo 1 step 2) print(a) = ") In the above program, the loop will start running and will print the value from 4 to 1 as follows: Print("loops prints (x in 4 downTo 1) print(x) = ") There are different ways to use for loop a few are the below examples:- Example #1 So 1.50 would mean a number from 1 to 50.Kotlin for loop allows you to rerun the same lines of code but is easier for the developers.Kotlin only reduces the code with the same for loop functionality.


In the above example, the for loop will run and return eight times as the range given is from 1 to 8, so it will print numbers in the range. In Kotlin, for loop is used to perform through ranges, arrays, etc.įor example, if you want to create a for loop to print numbers from 1 to 8, your program will be:- fun main(args:Array)
