Pregunta 3
Pregunta 3
Pregunta 3
alumnos=c("Juan","Emerson","Ana","Miguel","Danna")
tablaNotas=matrix(0,4,5)
rownames(tablaNotas) = cursos
colnames(tablaNotas) = alumnos
for(i in 1:4){
for(j in 1:5){
cat("Tala Notas[",cursos[i],",",alumnos[j],"]")
while(tablaNotas[i,j]>20 | tablaNotas[i,j]<0){
matematicas=c()
lenguaje=c()
historia=c()
geografía=c()
for(i in 1:4){
for(j in 1:5){
if(i==1){
matematicas[j]=tablaNotas[i,j]
if(i==2){
lenguaje[j]=tablaNotas[i,j]
if(i==3){
historia[j]=tablaNotas[i,j]
}
if(i==4){
geografía[j]=tablaNotas[i,j]
MayorNota = function(tablaNotas,alumnos,cursos){
for(i in 1:4){
mayor=0
aux1=0
for(j in 1:5){
if(tablaNotas[i,j]>mayor){
mayor=tablaNotas[i,j]
aux1=j
cat("La mayor nota en ", cursos[i], " es: ", mayor," y pertenece a ", alumnos[aux1],"\n")
for(i in 1:5){
s=0
for(j in 1:4){
s=s+tablaNotas[j,i]
s=s/4
}
print(tablaNotas)
MayorNota(tablaNotas,alumnos,cursos)
MayorPromedio(tablaNotas,alumnos)