Deaf Grandma

D

danielj

Also from the Chris Pine tutorial for beginners:

• Write a Deaf Grandma program. Whatever you say to grandma (whatever
you type in), she should respond with HUH?! SPEAK UP, SONNY!, unless
you shout it (type in all capitals). If you shout, she can hear you
(or at least she thinks so) and yells back, NO, NOT SINCE 1938! To
make your program really believable, have grandma shout a different
year each time; maybe any year at random between 1930 and 1950. (This
part is optional, and would be much easier if you read the section on
Ruby's random number generator at the end of the methods chapter.)
You can't stop talking to grandma until you shout BYE.
Hint: Don't forget about chomp! 'BYE'with an Enter is not the same as
'BYE' without one!
Hint 2: Try to think about what parts of your program should happen
over and over again. All of those should be in your while loop.

• Extend your Deaf Grandma program: What if grandma doesn't want you
to leave? When you shout BYE, she could pretend not to hear you.
Change your previous program so that you have to shout BYE three times
in a row. Make sure to test your program: if you shout BYE three
times, but not in a row, you should still be talking to grandma.


Here is what I came up with:

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are yeah?"

response = "nope"
bye = 0

while bye < 3
response = gets.chomp
if response == (response.upcase and "BYE")
puts "Hmmm... I would prefer..."
bye = (bye+1)
end
if response != response.upcase
puts "Huh?! I CAN'T HEAR YOU!"
end
if (response == response.upcase and response != "BYE")
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
end
end

Is there an easier way?
 
T

Thomas B.

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are yeah?"
response = nil
bye = 0
while bye < 3
response = gets.chomp
if response == "BYE"
puts "Hmmm... I would prefer..."
bye = (bye+1)
elsif response == response.upcase
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
else
puts "Huh?! I CAN'T HEAR YOU!"
end
end
 
S

Sebastian Hungerecker

danielj said:
if response == (response.upcase and "BYE")

response.upcase and "BYE" evaluates to "BYE" unless response.upcase returns
nil, which it won't. So the above is exactly like if response == "BYE"
 
C

Chris Mr.

danielj said:
Thanks very much for all the help guys.

Programmers seem to be a nice group!

I rewrote some of it like this:

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are you?"

response = gets.chomp
bye = 0

while bye < 1
if response != response.upcase
puts "Huh?! I CAN'T HEAR YOU!"
end

if (response == response.upcase and response != "BYE")
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
end

if response == "BYE"
puts "GOOD BYE, SONNY!"
bye = (bye+1)
end

response = gets.chomp
end

I'm a noob, but this seems cleaner to me. I know there is a way to write
it with out repeating the "if" statements three times but at least it
works:) The only other thing that bothers me is you have to press enter
at the end to return to the command prompt. If anyone has an example on
how to fix it that would be sweet.
 
M

Michael W. Ryder

Chris said:
I rewrote some of it like this:

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are you?"

response = gets.chomp
bye = 0

while bye < 1
if response != response.upcase
puts "Huh?! I CAN'T HEAR YOU!"
end

if (response == response.upcase and response != "BYE")
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
end

if response == "BYE"
puts "GOOD BYE, SONNY!"
bye = (bye+1)
end

response = gets.chomp
end

I'm a noob, but this seems cleaner to me. I know there is a way to write
it with out repeating the "if" statements three times but at least it
works:) The only other thing that bothers me is you have to press enter
at the end to return to the command prompt. If anyone has an example on
how to fix it that would be sweet.

How about:

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are you?"

while (response = gets.chomp) != "BYE"
if response != response.upcase
puts "Huh?! I CAN'T HEAR YOU!"
end

if (response == response.upcase)
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
end
end
puts "GOOD BYE, SONNY!"

This only uses one entry of response and no flags.
 
M

Michael W. Ryder

Michael said:
How about:

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are you?"

while (response = gets.chomp) != "BYE"
if response != response.upcase
puts "Huh?! I CAN'T HEAR YOU!"
end

if (response == response.upcase)
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
end
end
puts "GOOD BYE, SONNY!"

This only uses one entry of response and no flags.

I missed the part about removing the multiple if's in the oringal post.

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are you?"

while (response = gets.chomp) != "BYE"
if response != response.upcase
puts "Huh?! I CAN'T HEAR YOU!"
else
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
end
end
puts "GOOD BYE, SONNY!"
 
C

Chris Dow

Michael said:
I missed the part about removing the multiple if's in the oringal post.

#Grandma is deaf!

puts "Hey Sonny! It's your lovely Grandmother! How are you?"

while (response = gets.chomp) != "BYE"
if response != response.upcase
puts "Huh?! I CAN'T HEAR YOU!"
else
puts "NO! NOT SINCE " + (1930+rand(21)).to_s + "!"
end
end
puts "GOOD BYE, SONNY!"

That one is sweet. Thanks. I guess I was over thinking it, LOL. I didn't
think of putting the first response in parentheses. This helped me think
of it in a much easier way.
 
P

Priten G.

After reviewing the previous posts, I noticed that many answers did not
incorporate the condition: '...you have to shout BYE three times in a
row...'

This is what I came up with:


puts 'Hey Sonny, it\'s your Grandma! How are you?'

response = nil
bye = 0

while bye < 3
response = gets.chomp

if response == 'BYE'
bye = (bye + 1)

if bye == 3
puts 'BYE, SONNY!'
else
puts 'HUH?! SPEAK UP, SONNY!'
end

What do you think?

elsif response == response.upcase
puts 'NO! NOT SINCE ' + (1930+rand(21)).to_s + '!'
bye = 0
else
puts 'HUH?! SPEAK UP, SONNY!'
bye = 0
end
end
 
B

Brian Candler

danielj wrote in post #719787:
Is there an easier way?

Remember to set your bye counter to zero in every case except where
'BYE' is typed, to ensure three BYE's in a row are required. You can use
'next' to skip straight to the top of the next iteration, which means
you can put a single bye=0 at the end of the loop.

Also, I think there is some ambiguity in the original problem
description: what should happen if what you type contains neither upper
nor lower case letters? (e.g. empty text or only punctuation
characters?). In the code below I've let grandma have a snooze. I also
use the 'case' statement to match the response against a series of
values and regexp patterns.

puts "Hey Sonny, it's your Grandma! How are you?"
bye = 0
loop do
case gets.chomp
when "BYE"
bye += 1
break if bye >= 3
next
when /[a-z]/
puts "HUH?! SPEAK UP, SONNY!"
when /[A-Z]/
puts "NO, NOT SINCE #{rand(21)+1930}!"
else
puts "ZZZ"
end
bye = 0
end

But to be honest, I'd say that if...elsif...elsif...end is equally good.
 
S

Steve K.

I was doing stupid things with arrays and all sorts of dumb crap until I =

came here and read this thread. Super good work. I wanted my Ruby script =

to work with the three goodbyes extension exercise mentioned above. =

Also=E2=80=94I like double quotes and #{} to get things done. In my neoph=
yte =

opinion, it's cleaner and less characters.

puts "TALK TO ME! SO LONELY!\n\n"
bye =3D 0
while bye < 3
response =3D gets.chomp
if response =3D=3D "BYE"
puts "STAY AWHILE!?!"
bye =3D (bye+1)
elsif response =3D=3D response.upcase
puts "NO! NOT SINCE #{1910+rand(41)}!"
bye =3D 0
else
puts "Huh?! I CAN'T HEAR YOU!"
bye =3D 0
end
end

If you make it a single string=E2=80=94it's 263 if you format it to one l=
ine and =

strip my OCD new-line characters. It resets "bye" back down to zero if =

it's not said three times straight.

-- =

Posted via http://www.ruby-forum.com/.=
 

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,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top