Iammakingacodethatneedstocontain3vectors(registrationnumber,note1andnote2),relativeto6students,whichmustinclude:
- thefinalgradeofeachstudent;
- theclassaverage;
- ono.ofstudentswithagradebelowtheclassaverage.
ImadethecodeasfarasIknow,butitdidnotcompile,(someerrorinthedeclarationofthevariablevetor
).Andprinttablestylehowdoyoudo?
#include<stdio.h>intmain(){floatnota1[6],nota2[6],nf,medturma;intnm[6];inti;for(i=0;i<=6;i++);{printf("Informe o número de matrícula %d :", i);
scanf("%d", &nm[i]);
printf("Informe a nota 1 do aluno %d:", i);
scanf("%f", ¬a1[i]);
printf("Informe a nota 2 do aluno %d:", i);
scanf("%f", ¬a2[i]);
}
for (i=0; i<=6; i++)
{
nf= (nota1[i] + nota2[i])/2;
}
printf("A nota final de cada aluno é :",i);
medturma=nf[i]/6;
printf("A media da turma foi %f:", i);
if (nf<medturma)
printf("Notas abaixo da média %f:", i);
}