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}
  • 相关阅读:
    Binary Tree Level Order Traversal II
    图和图的遍历算法
    Remove Duplicates from Sorted List
    Binary Tree Preorder Traversal
    Merge Sorted Array
    [POJ2774][codevs3160]Long Long Message
    [BZOJ2251][2010Beijing Wc]外星联络
    [BZOJ1692][Usaco2007 Dec]队列变换
    [BZOJ1717][Usaco2006 Dec]Milk Patterns 产奶的模式
    [BZOJ1131][POI2008]Sta
  • 原文地址:https://www.cnblogs.com/lsk/p/1172069.html
Copyright © 2011-2022 走看看