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
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
33
M6 hito III
enidev911
0
20
postgres-instalacion-windows.pdf
enidev911
0
350
instalación Python
enidev911
0
750
Libreta_apuntes.pdf
enidev911
0
15
Other Decks in Programming
See All in Programming
はじめてのDSPy - 言語モデルを『プロンプト』ではなく『プログラミング』するための仕組み
masahiro_nishimi
2
290
Range on Rails ―「多重範囲型」という新たな選択肢が、複雑ロジックを劇的にシンプルにしたワケ
rizap_tech
0
130
ALL CODE BASE ARE BELONG TO STUDY
uzulla
18
3.3k
Go Conference 2025: Goで体感するMultipath TCP ― Go 1.24 時代の MPTCP Listener を理解する
takehaya
9
1.7k
Go言語はstack overflowの夢を見るか?
logica0419
0
270
CSC509 Lecture 03
javiergs
PRO
0
340
TFLintカスタムプラグインで始める Terraformコード品質管理
bells17
2
170
Claude CodeによるAI駆動開発の実践 〜そこから見えてきたこれからのプログラミング〜
iriikeita
0
180
Flutterで分数(Fraction)を表示する方法
koukimiura
0
130
iOSエンジニア向けの英語学習アプリを作る!
yukawashouhei
0
200
Devoxx BE - Local Development in the AI Era
kdubois
0
130
理論と実務のギャップを超える
eycjur
0
130
Featured
See All Featured
The Illustrated Children's Guide to Kubernetes
chrisshort
49
51k
Bash Introduction
62gerente
615
210k
GraphQLとの向き合い方2022年版
quramy
49
14k
Making Projects Easy
brettharned
119
6.4k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
229
22k
Why You Should Never Use an ORM
jnunemaker
PRO
59
9.6k
Designing for Performance
lara
610
69k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
14k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
37
2.6k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.7k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
20
1.2k
Why Our Code Smells
bkeepers
PRO
339
57k
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