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:
0b29fbd52e
Větve
Značky
master
lonely-tiger
/
tests
/
loops
/
while_post_dec
while_post_dec
142 B
Historie
Surový
1
2
3
4
5
6
7
8
9
10
11
12
void main() {
int a = 5;
while(a > 0) {
test(a--);
}
a = 5;
while(a > 0) {
test(a);
a--;
}
}