Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #table_of_contents.rb
  2. #tutorial for contents
  3.  
  4. ls_chapter = []
  5. ls_page = []
  6.  
  7. puts
  8. puts 'Welcome to Table of Contents maker'
  9. puts
  10. puts 'Type help for commands.'
  11. puts
  12.  
  13. puts 'Enter your Chapter Title'
  14. in_chapter = gets.chomp
  15. ls_chapter.push in_chapter
  16.  
  17. puts 'Enter your Page number: ie. Page 2'
  18. in_page = gets.chomp
  19. ls_page.push in_page
  20.  
  21.  
  22. line_width = 40
  23.  
  24. ls_chapter.each do |chap|
  25. ls_page.each do |page|
  26. puts "#{(chap.ljust(line_width))} #{(page.rjust(line_width))}"
  27. end
  28. end
Add Comment
Please, Sign In to add comment