mathops.via

来自「一个用VB写的很好的编译器,功能超好,不过就是代码有点多,是进一步学习编译的好」· VIA 代码 · 共 27 行

VIA
27
字号
// MathOps.lnl

application PE GUI entry main; 

import MessageBox alias MessageBoxA 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 = x + y;
    difference = x - y;
    product = x * y;
    quotient = x / y;

    Format(buffer, "9 + 3 = %d\n9 - 3 = %d\n9 * 3 = %d\n9 / 3 = %d", 
           sum, difference, product, quotient);
    MessageBox(0, buffer, "MathOps", 0);
end;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?