17 Loops using while

Scala doesn’t have a “classic” equivalent to the imperative for loop construct that exists in c, Java, etc. For imperative “for” like loops, use while.

Scala doesn’t support (out of the box) the ++ and -- operators, use += 1 or -= 1 for the same effect.


0
//Loops using while  
1
 
2
var i, sum = 0  
3
while ( i < 10) {  
4
  sum += i  
5
  i+=1  
6
}  
7
println(sum)  
8
 
 
Code editor is using Scalakata.com written by Guillaume Massé