-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlunosNota.java
56 lines (47 loc) · 1.05 KB
/
AlunosNota.java
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
/**
* Laboratório de Programação 2 - Lab 1
*
* @author Mariane Silva de Carvalho - 119210450
*/
import java.util.Scanner;
import java.util.ArrayList;
public class AlunosNota {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
ArrayList<Integer> notas = new ArrayList<Integer>();
while (true) {
String NomeNota = sc.nextLine();
if (NomeNota.equals("-")) {
break;
}
String[] dados = NomeNota.split(" ");
notas.add(Integer.parseInt(dados[1]));
}
int maior = 0;
int menor = 1000;
int soma = 0;
int acima = 0;
int abaixo = 0;
for (int nota : notas) {
if (nota > maior) {
maior = nota;
}
if (nota < menor) {
menor = nota;
}
soma += nota;
if (nota >= 700) {
acima += 1;
}
if (nota < 700) {
abaixo += 1;
}
}
int media = soma / notas.size();
System.out.println("maior: " + maior);
System.out.println("menor: " + menor);
System.out.println("media: " + media);
System.out.println("acima: " + acima);
System.out.println("abaixo: "+ abaixo);
}
}