This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
taddeus
/
civicaml
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Árvore:
c1c69e996a
Ramos
Etiquetas
master
civicaml
/
test
/
basic
/
check_success
/
do_while.cvc
do_while.cvc
126 B
Histórico
Em bruto
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);
}