-
Notifications
You must be signed in to change notification settings - Fork 0
/
typos.rb
55 lines (46 loc) · 1.11 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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
while !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)
if students.empty? == false
students.each do |student|
puts "#{student[:name]} (#{student[:cohort]} cohort)"
end
else
puts " "
end
end
def print_footer(names)
if names.empty? == false
if names.count > 1
puts "Overall, we have #{names.count} great students"
else
puts "Overall, we have #{names.count} great student"
end
else
puts "There are no students to view."
end
end
students = input_students
print_header
print(students)
print_footer(students)