I am new with ruby. wish to know how to write following loop in ruby.

var index=25; 

for (i = index; i >= 0; i--) { 
    print i;
}

Thanks in advance

link|improve this question

74% accept rate
note that your question should read for (i = index; i >= 0; i--) – KevinDTimm Jan 19 at 13:08
4  
If you're new with ruby, why does your profile say you have 5 years of RoR experience? – Mark Thomas Jan 19 at 13:18
Yeah mark :) , I was a php developer before – Manish Shrivastava Jan 19 at 13:21
@MarkThomas unless ror_master edited his profile, there's nothing in it to indicate how his 5 years experience broke down across various platforms. – Dan Neely Jan 19 at 18:52
While that's technically true, it is listed first, and it's not like you would assume that 'ror_master' has little to no Ruby experience. It just seems misleading. – Mark Thomas Jan 19 at 20:03
show 2 more comments
feedback

7 Answers

up vote 4 down vote accepted

There are many ways to perform a decrementing loop in Ruby:

First way:

for i in (10).downto(0)
   puts i 
end

Second way:

index = 10 # any value
index.downto(0) do |i|
  puts i
end

Third way:

i = index
until i > 0
  i -= 1
  puts i
end
link|improve this answer
1  
1st way contains extraneous parens, and is not very idiomatic. 2nd way also contains extraneous parens, has an unnecessary 'each', and has unnecessary quotes and variable interpolation. 3rd way is simply broken. – Mark Thomas Jan 19 at 14:55
feedback

One way:

25.downto(0) do |i|
  puts i
end
link|improve this answer
I guess you figured out ranges can't be used like this ;-) – Bozhidar Batsov Jan 19 at 13:17
That was someone else's answer, since deleted. It wouldn't have crossed my mind to use a range when this is precisely what downto is for. – Mark Thomas Jan 19 at 13:21
Sorry about that then. I was amused by the answer, but failed to remember the name :-) – Bozhidar Batsov Jan 19 at 13:22
When I first typed it, I did have an 'each' though. A couple of seconds later I realized the each wasn't necessary and removed it. – Mark Thomas Jan 19 at 13:22
Indeed - using an enumerator is unnecessary in this particular situation (but it's perfectly legal). – Bozhidar Batsov Jan 19 at 13:25
feedback

Try this:

25.downto(0) { |i| puts i }
link|improve this answer
feedback

downto is fine, but there is also the more generic step.

25.step(0, -1){|i| puts i}
link|improve this answer
feedback

Just in case you are working with a range already:

rng = 0..6
rng.reverse_each { |i| p i }
link|improve this answer
feedback

Here's a simpler one

(25..0).each { |i| print i }
link|improve this answer
feedback

Yeah it will not work editing my answer Thanks

index.downto 0 do |i| p i end
link|improve this answer
This doesn't do what the OP has asked. Try it in the console. – Pavling Jan 19 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.