?? countob.via
字號:
// CountOB.lnl
application PE GUI; include "win32a.inc";
dword i,StartPoint,RunTime,Remainder; string sBuffer;
entry
MessageBox(0,"Starting While Loop..","Linley Compiler",$20);
StartPoint = GetTickCount();
while (i<1000000000) {
i++;
}
RunTime = (GetTickCount()-StartPoint)/1000;
Remainder = (GetTickCount()-StartPoint)%1000;
Format(sBuffer,"Time needed: %d.%d seconds.",RunTime,Remainder);
MessageBox(0,sBuffer,"Loop..",$20);
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -