-
Notifications
You must be signed in to change notification settings - Fork 0
/
atividades
78 lines (55 loc) · 1.86 KB
/
atividades
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
ex.12
package atividades;
import java.util.ArrayList;
import java.util.Scanner;
public class atividades {
public static void main(String[] args) {
// TODO Auto-generated method stub
ArrayList<String> listaNomes = new ArrayList<>();
Scanner leitura = new Scanner(System.in);
for (int j = 0; j < 10; j++) {
System.out.println("Insira um nome:");
String nome = leitura.nextLine();
if (!nome.isEmpty()) {
listaNomes.add(nome);
}
}
listaNomes.set(4, "Erick");
}
}
*******************************************************
ex.3
package ex3;
public class ex3 {
public static void main(String[] args) {}
public Double calcabs(Double qtdLitros, Double precoLitros) {
if(qtdLitros == null) {
}
return qtdLitros * precoLitros;
}
}
********************************************
ex.5
A Classe primitiva é como declarar a variável sobre uma modalidade como um
numero inteiro, tendo varias classes como o double, já wrapper class é o conjunto
de todos eles, como se o wrapper class fosse um titulo e a classe primitiva os tópicos desse titulo.
********************************
ex8
package atividades;
import java.util.ArrayList;
import java.util.Scanner;
public class atividades {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner leitura = new Scanner(System.in);
String[] vetor = new String[10];
for (int i = 0; i < vetor.length; i++) {
System.out.println("Insira valor:");
vetor[i] = leitura.nextLine();
}
vetor[0] = "valor";
for (int i = 0; i < vetor.length; i++) {
System.out.println(vetor[i]);
}
}
}