-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFor
31 lines (30 loc) · 814 Bytes
/
For
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
class Main {
public static void main(String[] args) {
for(int cont=0; cont <10; cont++){
System.out.println("oi " + cont);
\\ essa função me mostrou a contagem de oi em uma tela, isso é uma estrutura de repetição
}
}
}
while
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int opcao =0;
while(opcao != 99){
System.out.println("Digite um valor ou 99 para sair");
Scanner entrada= new Scanner(System.in);
opcao=entrada.nextInt();
}
}
}
do while
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int opcao;
do{
System.out.println("Digite um valor qualquer ou 99 para sair");
Scanner entrada=new Scanner(System.in);
opcao = entrada.nextInt();
}while(opcao !=99);