matlab - password program
조회 수: 3 (최근 30일)
이전 댓글 표시
It's my password program with locked property. It's okay, but first of all why Cancel button doesn't work? also there's a simple problem with this locked property: if you enter your password incorrectly three times, first of all 'Try again' will show and then 'LOCKED!'. you know this feature isn't interesting. I want to show ONLY one message that's LOCKED!
if (strcmp(pass,password))
uiwait(msgbox('Welcome!'));
break;
else
uiwait(errordlg('Try again!'));
wrong = wrong + 1;
if (wrong == 3)
lock = true;
break;
end
end
end
if (lock)
uiwait(errordlg('LOCKED!'));
return;
end
댓글 수: 0
채택된 답변
Walter Roberson
2017년 12월 9일
else
wrong = wrong + 1;
if (wrong == 3)
lock = true;
break;
else
uiwait(errordlg('Try again!'));
end
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!