
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.Kotlin for loop does the same thing as other languages for loop.Once a value is initialized in the for loop, the loop works until the final value is filled, and then it prints the value.For loop are typically used when the number of iterations is known beforehand.For loop is a control flow statement for specifying iteration, which allows code to be executed repeatedly.So when you run the program, the output will be: 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)
