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:
3d1f202c9d
Ramuri
Etichete
master
civicaml
/
test
/
basic
/
check_success
/
binops.cvc
binops.cvc
125 B
Istoric
Crud
1
2
3
4
5
6
7
8
void foo() {
int a;
int b = 2;
int c = 3 + 4;
int d = 5 * 6;
int e = 7 % 8;
int f = c + d - e * b;
}