Push Inputted Words

S

Scott Andrechek

I'm trying to make a program that gets you to input words and when you
press enter with nothing typed it sorts them alphabetically. My code
right now is:

words=[]
while words!=''
words.push gets
end
if words==''
words.sort
end

It runs and asks for words. I assume that it is pushing them into the
array but it isn't stopping and sorting them when there is nothing
inputted by the user. Hope I gave enough information.

As always thanks in advance,
Scott Andrechek
 
S

Scott Andrechek

I'm now using this:

words=[]
word = 'any'
while word!= ''
words.push gets
word= gets.chomp
end
puts
puts words.sort

but as you might notice this code will skip every second word to find a
matching variable for word :S

-Scott
 
J

John W Higgins

[Note: parts of this message were removed to make it a legal post.]

I'm now using this:

words=[]
word = 'any'
while word!= ''
words.push gets
word= gets.chomp
end
puts
puts words.sort

but as you might notice this code will skip every second word to find a
matching variable for word :S

Try this

http://gist.github.com/137478

John
 
S

Sascha Abel

Or to void instance variables:

words = []
while (word = gets.chomp) != ''
words.push word
end
puts words.sort

sascha
 
J

John W Higgins

[Note: parts of this message were removed to make it a legal post.]
Is it asked too much that you read the first seven paragraphs
before posting?

Bertram

Is it too much for you to ignore a thread that you find objectionable?

John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top