blob: f0f4583afce8249f09ecf2fb15c5363066c0e386 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
int
main()
{
int x;
x = 0;
x += 2;
x += 2;
if (x != 4)
return 1;
x -= 1;
if (x != 3)
return 2;
x *= 2;
if (x != 6)
return 3;
return 0;
}
|