The moose likes Scala and the fly likes Incrementing the for loop (loop variable) in scala by power of 5 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Other Languages » Scala
Reply Bookmark "Incrementing the for loop (loop variable) in scala by power of 5" Watch "Incrementing the for loop (loop variable) in scala by power of 5" New topic
Author

Incrementing the for loop (loop variable) in scala by power of 5

Mohamed Sanaulla
Bartender

Joined: Sep 08, 2007
Posts: 2693

I have this particular requirement where the increment in the loop variable is to be done by multiplying it with 5 after each iteration. In Java we could implement it this way

In scala I was trying the following code-

But its printing the following output:
1 1
6 2
11 3
16 4
21 5
26 6
31 7
36 8
....
....

Its incrementing by 5 always. So how do I got about actually multiplying the increment by 5 instead of adding it.


Mohamed Sanaulla | My Blog
Mohamed Sanaulla
Bartender

Joined: Sep 08, 2007
Posts: 2693

Posted on Stackoverflow as well: http://stackoverflow.com/questions/4194075/incrementing-the-for-loop-loop-variable-in-scala-by-power-of-5
Mohamed Sanaulla
Bartender

Joined: Sep 08, 2007
Posts: 2693

The query has been answered on Stackoverflow. Link provided in the previous post.
 
 
subject: Incrementing the for loop (loop variable) in scala by power of 5
 
Threads others viewed
C quiz questions
how to print triangle like format
2-Dimensional Arrays?
MultiDimenaional Array sort
Reading nested loop
developer file tools