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_pre_inc
while_pre_inc
142 B
Historie
Surový
1
2
3
4
5
6
7
8
9
10
11
12
void main() {
int a = 0;
while(a < 5) {
test(++a);
}
a = 0;
while(a < 5) {
test(a);
++a;
}
}