-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercicio2.java
53 lines (37 loc) · 1.08 KB
/
Exercicio2.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
/*1) Elabore um algoritmo que leia 10 números inteiros e armazene em um vetor.
* Em seguida, mostre na tela:
● Todos os elementos dos índices ímpares do vetor
● Todos os elementos do vetor que são números pares
● A Soma de todos os elementos do vetor
● A Média de todos os elementos do vetor, armazenada em uma variável do tipo real*/
package Arrays;
import java.util.Scanner;
public class Exercicio2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int[] vet= new int[10];
double soma=0, media=0;
media=soma/10;
for (int i=0; i<10; i++) {
vet[i]=sc.nextInt();
soma+=vet[i];
media=soma/10;
}
System.out.println("Elementos nos indices impares: ");
for (int i=0; i<10; i++) {
if(i%2==1) {
System.out.print(vet[i]+" ");
}
}
System.out.println("\nElementos pares: ");
for (int i=0; i<10; i++) {
if(vet[i]%2==0) {
System.out.print(vet[i]+" ");
}
}
System.out.println("\nSoma: "+soma);
System.out.println("media: "+media);
sc.close();
}
}