-
Notifications
You must be signed in to change notification settings - Fork 0
/
while.html
60 lines (45 loc) · 1.24 KB
/
while.html
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laço de repetição de determinação (WHILE)</title>
</head>
<body>
<script>
// let contador = 1
// while(contador <= 5) {
// contador++
// console.log(contador)
// }
// let i = 1
// while(i <= 3) {
// console.log("Valor de i é: " +i)
// i++
// }
// while (expressao) {
// instrucao
// }
// do
// instrucao
// while (expressao)
// let aumento = 500
// do {
// console.log('O salário é de: ' +aumento)
// aumento += 50
// }while (aumento < 500)
// const linguagem = ['Javascript', 'Python', 'C#', 'PHP']
// let index = 0
// do {
// console.log(linguagem[index])
// index++
// } while(index < linguagem.length)
const quantidaDeVoltas = 15
let voltaAtual = 6
do {
console.log(voltaAtual)
voltaAtual++
}while(voltaAtual <= quantidaDeVoltas)
</script>
</body>
</html>