begin
{ some Code }
...
if(...) then
i = 101
{more code}
...
end;
101 i 1 100
for
while
C
for ( i=0; i<MaxRecords; i++ )
{
if( Entry[i] = = TestValue )
{
break;
}
}
if( i< MaxRecords )
return(TRUE);
else
return(FALSE);
Entry[] TestValue TRUE
FALSE 1
TestValue MaxRecords FAIHE
c
Found = FALSE;
for(i<0; i<MaxRecords; i++)
{
if(Entry[i] == TestValue)
{
Found = TRUE;
break;