This website works better with JavaScript
Acasă
Explorează
Ajutor
Autentificare
taddeus
/
civicaml
Urmărește
1
Stea
0
Bifurcare
0
Fisiere
Probleme
0
Trageți solicitările
0
Wiki
Arbore:
f1c1e5a6be
Ramuri
Etichete
master
civicaml
/
test
/
basic
/
check_success
/
do_while.cvc
do_while.cvc
126 B
Istoric
Crud
1
2
3
4
5
6
7
8
9
void test_do_while2()
{
int x = 0;
int y = 10;
do {
x = x + 1;
y = y - 1;
} while (x <= y);
}