zoukankan      html  css  js  c++  java
  • 编译对比~

     1;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     2;  >>>>    Hello,World >>>Size:2.50 KB>>>>>>>
     3;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     4            .386
     5            .model flat,stdcall
     6            option casemap:none
     7include     windows.inc
     8include     user32.inc
     9include     kernel32.inc
    10includelib  user32.lib
    11includelib  kernel32.lib
    12            .data
    13szCaption   db  'A MessageBox !',0
    14szText      db  'Hello, World !',0
    15            .code
    16start:
    17            invoke  MessageBox,NULL,offset szText,offset szCaption,MB_YESNO or MB_ICONWARNING
    18            invoke  ExitProcess,NULL
    19            end start
    20;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    21;>>>>>   End >>>>> Process   >>>>> >>>>>>>
    22;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     1//一样的功能 用 C 写出来的窗体的做个比较!
     2//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     3//>>>>>> Start >>>>Size:15.9 KB >>>>>>>>>
     4//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     5#include<windows.h>
     6int main(void)
     7{
     8     MessageBox(0,"Hello,World!",0,4);
     9     return 0;
    10}

    11//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    12//>>>>>>  >>>>>>> End  >>>>>> >>>>>>>>>>>
    13//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     1//功能不一样,大概意思用 C 写出来的
     2//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     3//>>>>>> Start >>>>Size:15.2 KB >>>>>>>>>
     4//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     5#include<stdio.h>
     6int main(void)
     7{
     8    printf("Hello,World");
     9}

    10//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    11//>>>>>>  >>>>>>> End  >>>>>> >>>>>>>>>>>
    12//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    1//大概意思用 VBS 写出来的
    2//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    3//>>>>>> Start >>>>Size:21 字节 >>>>>>>>>
    4//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    5msgbox("hello,world")
    6//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    7//>>>>>>  >>>>>>> End  >>>>>> >>>>>>>>>>>
    8//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    1#include<iostream>
    2int main()
    3{
    4std::cout << "Hello World\n";
    5return 0;
    6}
  • 相关阅读:
    .net软件反编译笔记
    Asp.Net 网站一键部署技术(上)
    C# TreeGridView 实现进程列表
    HeidiSQL Navicat
    Flask项目中邮箱模块的应用
    如何在已有的Flask项目添加数据表结构?
    把u盘刻录成系统盘
    Object '<Tbl_next_week_change_state at 0x7f2c78d849e8>' is already attached to session '4' (this is '6')
    OSError: [Errno 98] Address already in use
    Linux下设置和查看环境变量
  • 原文地址:https://www.cnblogs.com/lsk/p/1172069.html
Copyright © 2011-2022 走看看