aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_ALLOPER.c
blob: ab571810d62c1ee4cf695c35d7b6439b0e51f88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
int alloper(int a, int b, int c, int d, int f)
{
    a = b * c + d - f;
    {
	int c = 2;
	b += c + 2;
    }
    a -= b;
    d = a - c;
    
    if((a == b || a != c || b > d || f < d) && a)
    {
	a = 2 * b;
    }
    else
    {
	a -= d;
    }

    do
    {
	a += 1;
	f++;
    }
    while(f < 50);
    
    return a;
}