📄 operationorder.via
字号:
// OperationOrder.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 sum;
local dword difference;
local dword product;
local dword quotient;
x = 9; y = 3;
sum = 1 + 2 / 3;
Format(buffer, "1 + 2 / 3 = %d", sum);
MessageBox(0, buffer, "MathOps", 0);
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -