-
Notifications
You must be signed in to change notification settings - Fork 0
/
Listanotas.java
65 lines (49 loc) · 1.22 KB
/
Listanotas.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
57
58
59
60
61
/**
LABORATORIO DE PROGRAMAÇÃO - LAB01
SOFIA ROCHA CAVALCANTI -119210421
*/
import java.util.Scanner;
public class Listanotas {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int[] valores = new int[1001];
int contador = 0 ;
while (true) {
String entrada = sc.nextLine();
if (entrada.equals("-")) {
break;
}else {
String[] numero = entrada.split(" ");
valores[contador]= Integer.parseInt(numero[1]);
contador += 1;
}
}
int maior = Integer.MIN_VALUE;
int menor = Integer.MAX_VALUE;
int numalunosacima=0;
int numalunosabaixo=0;
int media =0;
int quantidade=0;
for (int i = 0; i < contador; i++) {
if (valores[i] > maior) {
maior = valores[i];
}
if (menor > valores[i]){
menor = valores[i];
}
if( valores[i] >= 700) {
numalunosacima += 1;
}
if (valores[i]< 700) {
numalunosabaixo += 1;
}
media += valores[i];
}
media = (int) media / contador;
System.out.println("maior: "+maior);
System.out.println("menor: "+menor);
System.out.println("media: "+media);
System.out.println("acima: "+numalunosacima);
System.out.println("abaixo: "+numalunosabaixo);
}
}