Guest User

Untitled

a guest
Jun 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. def _Birthday
  2. puts ' Hello, today I will be telling you how old you are'
  3. puts 'please enter your year of birth.'
  4. year = gets.chomp
  5. puts 'Now the month you were born in please.'
  6. month = gets.chomp
  7. puts 'And finally the day you were born.'
  8. day = gets.chomp
  9. puts 'So you were born, ' + year + ' , ' + month + ' , ' + day + '?'
  10. answer = gets.chomp "(y/n)"
  11. if answer == 'y'
  12. puts 'Well then, you are'
  13. age = ' + year + ' ' + month + ' ' + day + '
  14. puts Time.local (age)
  15. else
  16. _Birthday
  17. end
  18. end
  19.  
  20. _Birthday
Add Comment
Please, Sign In to add comment