?? divide1.via
字號:
// Divide1.lnl
application PE GUI entry main;
import MessageBox ascii lib "USER32.DLL",4;
string buffer[256];
frame main();
local dword x;
local dword y;
local dword quotient;
x=9; y=3;
quotient = x/y;
Format(buffer,"%d / %d = %d",x,y,quotient);
MessageBox(0,buffer,"Divide1",0);
x=2; y=3;
quotient = x/y;
Format(buffer,"%d / %d = %d",x,y,quotient);
MessageBox(0,buffer,"Divide1",0);
x=9; y=4;
quotient = x/y;
Format(buffer,"%d / %d = %d",x,y,quotient);
MessageBox(0,buffer,"Divide1",0);
x=255; y=1;
quotient = x/y;
Format(buffer,"%d / %d = %d",x,y,quotient);
MessageBox(0,buffer,"Divide1",0);
end;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -