This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
taddeus
/
civicaml
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
db20e2c5a0
Rami (Branch)
Tag
master
civicaml
/
test
/
basic
/
check_success
/
do_while.cvc
do_while.cvc
126 B
Cronologia
Originale
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);
}