while(m<n)
if(x>y) AND (a<b) then
a=a+1
y=y-1
end if
m=m+1
end while
i was calculating Cyclomatic Complexity of above pseudo code, and i came to conclusion with the short cut method that
M= (Decision Point) + 1
Where M is Cyclomatic Complexity
i Got answer 3
is it True?