-2
如何將while循環轉換爲for循環?將while循環轉換爲for循環
const
TheRightWord = 'hello';
MaximumTries = 3;
var
NTries : integer;
AWord : string;
begin
NTries := 1;
AWord := ' ';
while (AWord <> TheRightWord) and (NTries <= MaximumTries) do
我認爲這將是答案:
for (AWord <> TheRightWord) and (NTries <= MaximumTries) do
必須我只是把一個for
就地的while
的?或者它是for i := 1 to 3 do
?
這是一個家庭作業? – Kromster
不,我想要一個程序,要求密碼.... – user1000441
,如果3次嘗試失敗,那麼它會鎖定你,但我想用for循環代替一段時間 – user1000441