Given:
an int variable k ,
an int array currentMembers that has been declared and initialized,
an int variable memberID that has been initialized, and
an boolean variable isAMember ,
write code that assigns true to isAMember if the value of memberID can be found in currentMembers , and that assigns false to isAMember otherwise. Use only k , currentMembers , memberID , and isAMember .
My Code:
for (k=0; k
{
if (currentMembers[k] == memberID)
isAMember = true;
else
isAMember = false;
}
why is this not working? I need correction help from you guys, thanks
2006-10-18
10:00:12
·
5 answers
·
asked by
?
1
in
Computers & Internet
➔ Programming & Design