This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
taddeus
/
civicaml
Seguir
1
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Pull Requests
0
Wiki
Árbore:
7dd8ec8281
Ramas
Etiquetas
master
civicaml
/
test
/
basic
/
check_success
/
do_while.cvc
do_while.cvc
126 B
Histórico
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);
}