/
Evorunner
/
ruby_labs
Обзор
Документация
Войти
/
Evorunner
/
ruby_labs
Код
Запросы
4
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
Lab5
Lab3/main.rb
17 строк
449 B
Иван
lab-03: ООП, классы Student и StudentCollection
31 май 2026, 17:08
31 май 2026, 17:08
4ab2cb6
Код
Авторство
О чём код?
require_relative "student_collection" collection = StudentCollection.new count = loop do print "Сколько студентов добавить? " input = gets.chomp.strip break input.to_i if input =~ /^\d+$/ && input.to_i > 0 puts "Ошибка: введите целое положительное число!" end count.times do |i| student = collection.create_from_input(i + 1) collection.add(student) end collection.print_all