A Licenciatura em Computação
Por: michelmoraes89 • 30/6/2020 • Trabalho acadêmico • 477 Palavras (2 Páginas) • 140 Visualizações
Michel Batista de Moraes - Licenciatura em Computação.
Utilizei conceitos do Java 8 para realizar a atividade.
Integer qtdAlunos = 0;
String nome = new String();
Integer nota1 = 0;
Integer nota2 = 0;
Integer nota3 = 0;
Integer nota4 = 0;
String status = new String();
BigDecimal somatoriaNota = new BigDecimal.Zero();
BigDecimal mediaAluno = new BigDecimal.Zero();
ArrayList
int vetor[];
vetor = new int[qtdAlunos];
int contator = 0;
while ( contator <= qtdAlunos ) {
public void cadastrarAluno(String nome, Integer nota1, Integer nota2, Integer nota3, Integer nota4) {
vetor[0] = nome;
vetor[1] = nota1;
vetor[2] = nota2;
vetor[3] = nota3;
vetor[4] = nota4;
}
somatoriaNota = vetor[2] + vetor[3] + vetor[4] + vetor[5];
mediaAluno = somatoriaNota/4;
if ( mediaAluno >= 6 ) {
status = “Aprovado”;
} else if ( mediaAluno >= 4 && mediaAluno <= 5,9 ) {
status = “Exame”;
} else {
status = “Reprovado”;
}
resultado.add(nome + “ - ” mediaAluno + “ - “ status );
contator = contator+1;
}
while ( contator <= qtdAlunos ) {
public void cadastrarAluno(String nome, Integer nota1, Integer nota2, Integer nota3, Integer nota4) {
vetor[0] = nome;
vetor[1] = nota1;
vetor[2] = nota2;
vetor[3] = nota3;
vetor[4] = nota4;
}
somatoriaNota = vetor[2] + vetor[3] + vetor[4] + vetor[5];
mediaAluno = somatoriaNota/4;
if ( mediaAluno >= 6 ) {
status = “Aprovado”;
} else if ( mediaAluno >= 4 && mediaAluno <= 5,9 ) {
status = “Exame”;
} else {
status = “Reprovado”;
}
resultado.add(nome + “ - ” mediaAluno + “ - “ status );
contator = contator+1;
}
while ( contator <= qtdAlunos ) {
public void cadastrarAluno(String nome, Integer nota1, Integer nota2, Integer nota3, Integer nota4) {
vetor[0] = nome;
vetor[1] = nota1;
vetor[2] = nota2;
vetor[3] = nota3;
vetor[4] = nota4;
}
somatoriaNota = vetor[2] + vetor[3] + vetor[4] + vetor[5];
mediaAluno = somatoriaNota/4;
if ( mediaAluno >= 6 ) {
status = “Aprovado”;
} else if ( mediaAluno >= 4 && mediaAluno <= 5,9 ) {
status = “Exame”;
} else {
status = “Reprovado”;
}
resultado.add(nome + “ - ” mediaAluno + “ - “ status );
contator = contator+1;
}
...