?? nestedwhile.via
字號(hào):
// NestedWhile.lnl
application PE GUI entry main;
import MessageBox ascii lib "USER32.DLL",4;
frame main();
local dword i;
local dword j;
local string strMsg[64];
i = 0; j=0;
while (i < 2) {
while (j < 2 ) {
Format(strMsg, "i = %d\nj = %d", i, j);
MessageBox(0, strMsg, "NestedWhile", 0);
j = j + 1;
}
i = i + 1;
}
end;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -