Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
bucles.pdf
Search
marco contreraas
April 09, 2023
Programming
0
210
bucles.pdf
marco contreraas
April 09, 2023
Tweet
Share
More Decks by marco contreraas
See All by marco contreraas
M6 hito I
enidev911
0
33
M6 hito III
enidev911
0
19
postgres-instalacion-windows.pdf
enidev911
0
340
instalación Python
enidev911
0
730
Libreta_apuntes.pdf
enidev911
0
14
Other Decks in Programming
See All in Programming
@Environment(\.keyPath)那么好我不允许你们不知道! / atEnvironment keyPath is so good and you should know it!
lovee
0
120
🔨 小さなビルドシステムを作る
momeemt
4
680
print("Hello, World")
eddie
2
530
速いWebフレームワークを作る
yusukebe
5
1.7k
HTMLの品質ってなんだっけ? “HTMLクライテリア”の設計と実践
unachang113
4
2.9k
Swift Updates - Learn Languages 2025
koher
2
480
MCPとデザインシステムに立脚したデザインと実装の融合
yukukotani
4
1.4k
250830 IaCの選定~AWS SAMのLambdaをECSに乗り換えたときの備忘録~
east_takumi
0
390
詳解!defer panic recover のしくみ / Understanding defer, panic, and recover
convto
0
240
OSS開発者という働き方
andpad
5
1.7k
さようなら Date。 ようこそTemporal! 3年間先行利用して得られた知見の共有
8beeeaaat
3
1.5k
Design Foundational Data Engineering Observability
sucitw
3
200
Featured
See All Featured
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
Embracing the Ebb and Flow
colly
87
4.8k
jQuery: Nuts, Bolts and Bling
dougneiner
64
7.9k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
A designer walks into a library…
pauljervisheath
207
24k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
A Tale of Four Properties
chriscoyier
160
23k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.2k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
4 Signs Your Business is Dying
shpigford
184
22k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.1k
Transcript
> Valor de i: 0 inicio i = 0 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i);
> Valor de i: 0 inicio i = 1 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1
> Valor de i: 0 inicio i = 2 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2
> Valor de i: 0 inicio i = 3 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2 Valor de i: 3
Valor de i: 0 inicio i = 4 ¿Es (i
< 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2 Valor de i: 3 Valor de i: 4
Valor de i: 0 inicio i = 5 ¿Es (i
< 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2 Valor de i: 3 Valor de i: 4