-
Notifications
You must be signed in to change notification settings - Fork 0
/
E01.java
45 lines (29 loc) · 946 Bytes
/
E01.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
package Arrays;
import java.util.Scanner;
public class E01 {
public static void main(String[] args) {
int[] A = new int[6];
int soma, resposta, indice, novo;
Scanner ler = new Scanner (System.in);
A[0] = 1;
A[1] = 0;
A[2] = 5;
A[3] = -2;
A[4] = -5;
A[5] = 7;
soma = A[0] + A[1] + A[5];
System.out.println("Deseja modificar algum valor?\nAperte 1 para Sim e 2 para Não");
resposta = ler.nextInt();
System.out.println("Qual posição do vetor modificar?");
indice = ler.nextInt();
System.out.println("Qual o novo valor?");
novo = ler.nextInt();
if(resposta == 1){
A[indice-1] = novo;
}
System.out.println("Valores do vetor A: ");
for(int i=0; i<6; i++){
System.out.println(A[i]);
}
}
}