-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepeticao.java
More file actions
40 lines (31 loc) · 856 Bytes
/
Repeticao.java
File metadata and controls
40 lines (31 loc) · 856 Bytes
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
public class Repeticao {
public static void ExemploFor() {
for(int carneirinhos = 1 ; carneirinhos <=20; carneirinhos ++) {
System.out.println(carneirinhos + " - Carneirinho(s)");
}
}
public static void ExemploForArray() {
String alunos[] = { "FELIPE", "JONAS", "JULIA", "MARCOS" };
for (int x=0; x<alunos.length; x++) {
System.out.println("O aluno no indice x=" + x + " é " + alunos[x]);
}
}
public static void ForArray2(){
String alunos [] = {"FELIPE","JONAS","JULIA","MARCOS"};
//Forma abreviada
for(String aluno : alunos) {
System.out.println(aluno);
}
}
public static void breakcontinue() {
for(int numero = 1; numero <=5; numero ++){
if(numero==3)
//break;
continue;
System.out.println(numero);
}
}
public static void main(String[] args) {
breakcontinue();
}
}