This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
taddeus
/
civicaml
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
65edd7a998
Branches
Tags
master
civicaml
/
test
/
basic
/
check_success
/
do_while.cvc
do_while.cvc
126 B
Historique
Raw
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);
}