Answers for "ruby case statement default"

1

ruby switch case

case grade
when 'A'
  puts "Way to go kiddo"
when 'B'
  puts "Better luck next time"
when 'C'
  puts "You can do better"
when 'D'
  puts "Scraping through"
when 'F'
  puts "You failed!"
else
  puts "Alternative grading system, eh?"
end
Posted by: Guest on October-19-2021

Browse Popular Code Answers by Language