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
640
Libreta_apuntes.pdf
enidev911
0
14
Other Decks in Programming
See All in Programming
Gemini CLIの"強み"を知る! Gemini CLIとClaude Codeを比較してみた!
kotahisafuru
3
960
Scale out your Claude Code ~自社専用Agentで10xする開発プロセス~
yukukotani
9
1.7k
バイブスあるコーディングで ~PHP~ 便利ツールをつくるプラクティス
uzulla
1
330
あなたとJIT, 今すぐアセンブ ル
sisshiki1969
0
520
バイブコーディング超えてバイブデプロイ〜CloudflareMCPで実現する、未来のアプリケーションデリバリー〜
azukiazusa1
3
800
『リコリス・リコイル』に学ぶ!! 〜キャリア戦略における計画的偶発性理論と変わる勇気の重要性〜
wanko_it
1
340
なぜ今、Terraformの本を書いたのか? - 著者陣に聞く!『Terraformではじめる実践IaC』登壇資料
fufuhu
4
520
PHPカンファレンス関西2025 基調講演
sugimotokei
6
1.1k
What's new in Adaptive Android development
fornewid
0
140
LLMは麻雀を知らなすぎるから俺が教育してやる
po3rin
3
2k
実践!App Intents対応
yuukiw00w
1
220
JetBrainsのAI機能の紹介 #jjug
yusuke
0
190
Featured
See All Featured
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3.1k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
Unsuck your backbone
ammeep
671
58k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Scaling GitHub
holman
461
140k
Designing Experiences People Love
moore
142
24k
How to train your dragon (web standard)
notwaldorf
96
6.2k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Practical Orchestrator
shlominoach
190
11k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
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