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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
marco contreraas
April 09, 2023
Programming
0
220
bucles.pdf
marco contreraas
April 09, 2023
Tweet
Share
More Decks by marco contreraas
See All by marco contreraas
M6 hito I
enidev911
0
38
M6 hito III
enidev911
0
23
postgres-instalacion-windows.pdf
enidev911
0
350
instalación Python
enidev911
0
840
Libreta_apuntes.pdf
enidev911
0
17
Other Decks in Programming
See All in Programming
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
260
AI駆動開発の本音 〜Claude Code並列開発で見えたエンジニアの新しい役割〜
hisuzuya
4
490
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
210
Cyrius ーLinux非依存にコンテナをネイティブ実行する専用OSー
n4mlz
0
110
文字コードの話
qnighy
44
17k
Codex の「自走力」を高める
yorifuji
0
1.1k
RAGでハマりがちな"Excelの罠"を、データの構造化で突破する
harumiweb
9
2.6k
あなたはユーザーではない #PdENight
kajitack
4
340
Codexに役割を持たせる 他のAIエージェントと組み合わせる実務Tips
o8n
3
1.2k
Unity6.3 AudioUpdate
cova8bitdots
0
120
Go Conference mini in Sendai 2026 : Goに新機能を提案し実装されるまでのフロー徹底解説
yamatoya
0
540
手戻りゼロ? Spec Driven Developmentとは@KAG AI week
tmhirai
1
170
Featured
See All Featured
Crafting Experiences
bethany
1
81
Site-Speed That Sticks
csswizardry
13
1.1k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
38
2.8k
How to make the Groovebox
asonas
2
2k
Ethics towards AI in product and experience design
skipperchong
2
220
XXLCSS - How to scale CSS and keep your sanity
sugarenia
249
1.3M
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
120
Embracing the Ebb and Flow
colly
88
5k
Bash Introduction
62gerente
615
210k
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
9.9k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.6k
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