/= %= <<= >>= &= |= ^=
This commit is contained in:
26
test.c
26
test.c
@@ -1,8 +1,26 @@
|
||||
int main() {
|
||||
int tomas = 1;
|
||||
int jefferson = 3;
|
||||
tomas *= jefferson;
|
||||
int tomas = 8;
|
||||
tomas /= 2;
|
||||
tomas *= 3;
|
||||
tomas %= 7;
|
||||
tomas <<= 7;
|
||||
tomas >>= 1;
|
||||
tomas += 31;
|
||||
tomas &= 21;
|
||||
tomas |= 3;
|
||||
tomas |= 303;
|
||||
tomas ^= 23;
|
||||
tomas ^= 27;
|
||||
tomas &= 302;
|
||||
tomas ^= 392;
|
||||
|
||||
int jefferson;
|
||||
jefferson = 3 + tomas / (~3 - 90);
|
||||
|
||||
jefferson *= tomas;
|
||||
return tomas * jefferson;
|
||||
|
||||
int three = tomas | jefferson;
|
||||
|
||||
return three;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user