We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e355f37 commit f97c745Copy full SHA for f97c745
5 files changed
aula 12/ex011.js aula12/ex011.jsaula 12/ex011.js renamed to aula12/ex011.js
aula 12/ex012.js aula12/ex012.jsaula 12/ex012.js renamed to aula12/ex012.js
aula 12/ex013.js aula12/ex013.jsaula 12/ex013.js renamed to aula12/ex013.js
aula13/ambiente.js
@@ -0,0 +1,24 @@
1
+// var c = 1
2
+// do{
3
+// console.log(`pagotti ${c}`)
4
+// c++
5
+// } while (c<=7)
6
+
7
8
+for(var c = 1; c<=7; c++){
9
+ console.log(`pagotti ${c}`)
10
+}
11
12
+// while (c <=7){
13
14
15
+// }
16
17
18
+// console.log('pagotti')
19
20
21
22
23
24
aula14/ambiente.js
@@ -0,0 +1,5 @@
+console.log('vai começar...')
+for(var c = 10; c>0; c--){
+console.log('FIM!')
0 commit comments