?? remainder.via
字號:
// Remainder.lnl
application PE GUI;
import MessageBox ascii lib "USER32.DLL",4;
frame div.mod();
local dword x;
local dword y;
local dword quotient;
local dword modulus;
local string buffer;
x=9; y=6;
quotient = x/y; modulus = x%y;
Format(buffer,"%d / %d = %d mod %d",x,y,quotient,modulus);
MessageBox(0,buffer,"Divide and MOD",0);
end;
entry
div.mod();
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -