⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 divide1.via

📁 用VB6写的真正的32位高级语言可视程序编译器
💻 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 + -