This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
kjhammerle
/
lonely-tiger
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
2d8b00be28
Větve
Značky
master
lonely-tiger
/
tests
/
loops
/
while_post_inc
while_post_inc
86 B
Historie
Surový
1
2
3
4
5
6
7
8
9
10
a = 0;
while(a < 5) {
print a++;
}
a = 0;
while(a < 5) {
print a;
a++;
}