-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprueba.rb
59 lines (44 loc) · 863 Bytes
/
prueba.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
56
57
58
59
file = File.open('alumnos.csv', 'r')
data = file.readlines
file.close
menu = true
while (menu)
puts 'Menu Opciones'
puts '1)Salir'
puts '2)Total_Alumnos'
puts '3)Promedios'
puts '4)Archivo_promedios'
puts '5)Aprobados'
opcion = gets.chomp
if opcion == 1
menu == false
puts 'Hasta Luego!'
end
if opcion < 2|| opcion > 5 || opcion.to_i == 0
end
if opcion == 2
data.each do |line|
contar_lineas = line.length
puts contar_lineas
end
class Alumno
attr_accessor :name, :nota1, :nota2, :nota3, :inasistencias
def initializer(name, nota1 = 0 , nota2 = 0, nota3 = 0, ausente = 0)
@name: name
@nota1: nota1
@nota2: nota2
@nota3: nota3
@inasistencias: inasistencias
end
end
student = Alumno.new
if opcion == 3
end
if opcion == 4
file = File.open('promedios.txt', 'w')
file.puts conten
file.close
conten =
if opcion == 5
end
end