It looks like you're new here. If you want to get involved, click one of these buttons!
for(i=0; i<10;i+=2)
if(!strcmp(str, numbers[i]))
{
cout << \"Passowrd is \" << users[i+1] << endl;
break;
}
if(i == 10) cout << \"Not found.\n\";
[/code]