-
Notifications
You must be signed in to change notification settings - Fork 0
/
typos.rb
39 lines (34 loc) · 893 Bytes
/
typos.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
def input_students
puts "Please enter the names of the students"
puts "To finish, just hit return twice"
# create an empty array
students = []
# get the first name
name = gets.chomp
# while the name is not empty, repeat this code
until name.empty? do
# add the student hash to the array
students << {name: name, cohort: :november}
puts "Now we have #{students.count} students"
# get another name from the user
name = gets.chomp
end
# return the array of students
students
end
def print_header
puts "The students of my cohort at Makers Academy"
puts "-------------"
end
def print(students)
students.each do |student|
puts "#{student[:name]} #{student[:cohort]} cohort"
end
end
def print_footer(names)
puts "Overall, we have #{names.count} great students"
end
students = input_students
print_header
print(students)
print_footer(students)