新西兰天维网社区

 找回密码
登录  注册
搜索
热搜: 移民 留学
查看: 290|回复: 5
打印 上一主题 下一主题

[工作] For programmers: Hello World [复制链接]

萨米 天维论坛20周年认证 

Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17

升级  53.94%

UID
36730
热情
13913
人气
14430
主题
225
帖子
32569
精华
14
积分
30788
阅读权限
30
注册时间
2005-4-25

至尊荣耀 最强王者 永恒钻石 尊贵铂金 新时政 元老勋章 设计勋章 探索勋章 活动贡献勋章 哈卡一族 10周年纪念 跑题党

跳转到指定楼层
楼主
发表于 2009-12-8 10:47:41 |只看该作者 |倒序浏览 微信分享
http://www.gnu.org/fun/jokes/helloworld.html

High School/Jr.High

10 PRINT "HELLO WORLD"
20 END


First year in College

program Hello(input, output)
begin
writeln('Hello World')
end.


Senior year in College

(defun hello
(print
(cons 'Hello (list 'World))))


New professional

#include <stdio>

void main(void)
{
  char *message[] = {"Hello ", "World"};
  int i;
  for(i = 0; i < 2; ++i)
  printf("%s", message);
  printf("\n");
}


Seasoned professional

#include <iostream>
#include <string>
class string
{
  private:
   int size;
   char *ptr;
  public:
   string() : size(0), ptr(new char('\0')) {}
   string(const string &s) : size(s.size)
   {
     ptr = new char[size + 1];
     strcpy(ptr, s.ptr);
   }
   ~string()
   {
     delete [] ptr;
   }
   friend ostream &operator <<(ostream &, const string &);
   string &operator=(const char *);
};
                                                                     
ostream &operator<<(ostream &stream, const string &s)
{
   return(stream << s.ptr);
}
string &string::operator=(const char *chrs)
{
   if (this != &chrs)
   {
     delete [] ptr;
     size = strlen(chrs);
     ptr = new char[size + 1];
     strcpy(ptr, chrs);
   }
   return(*this);
}
int main()
{
   string str;
   str = "Hello World";
   cout << str << endl;
   return(0);
}


System Administrator

#include <stdio>
#include <stdlib>
main()
{
  char *tmp;
  int i=0;
  /* on y va bourin */
  tmp=(char *)malloc(1024*sizeof(char));
  while (tmp="Hello Wolrd"[i++]);
  /* Ooopps y'a une infusion ! */
  i=(int)tmp[8];
  tmp[8]=tmp[9];
  tmp[9]=(char)i;
  printf("%s\n",tmp);
}

Apprentice Hacker

#!/usr/local/bin/perl
$msg="Hello, world.\n";
if ($#ARGV >= 0) {
     while(defined($arg=shift(@ARGV))) {
         $outfilename = $arg;
         open(FILE, ">" . $outfilename) || die "Can't write $arg: $!\n";
         print (FILE $msg);
         close(FILE) || die "Can't close $arg: $!\n";
     }
} else {
     print ($msg);
}
1;

Experienced Hacker

#include <stdio>
#include <string>
#define S "Hello, World\n"
main(){exit(printf(S) == strlen(S) ? 0 : 1);}


Seasoned Hacker

% cc -o a.out ~/src/misc/hw/hw.c
% a.out
Hello, world.


Guru Hacker

% cat
Hello, world.

New Manager (do you remember?)

10 PRINT "HELLO WORLD"
20 END


Middle Manager

mail -s "Hello, world." bob@b12
Bob, could you please write me a program that prints "Hello, world."?
I need it by tomorrow.
^D


Senior Manager

% zmail jim
I need a "Hello, world." program by this afternoon.

Chief Executive

% letter
letter: Command not found.
% mail
To: ^X ^F ^C
% help mail
help: Command not found.
% damn!
!: Event unrecognized
% logout

Research Scientist

        PROGRAM HELLO
        PRINT *, 'Hello World'
        END

Older research Scientist

        WRITE (6, 100)
    100 FORMAT (1H ,11HHELLO WORLD)
        CALL EXIT
        END
隨着电訊發達,我們知到的精神病患越來越多

使用道具 举报

Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17

升级  41.76%

UID
73975
热情
10957
人气
12739
主题
247
帖子
32465
精华
8
积分
28351
阅读权限
30
注册时间
2006-5-22
沙发
发表于 2009-12-8 10:48:23 |只看该作者 微信分享
不错。。。

使用道具 举报

Rank: 16Rank: 16Rank: 16Rank: 16

升级  61.56%

UID
109645
热情
15337
人气
16514
主题
132
帖子
4084
精华
0
积分
18078
阅读权限
30
注册时间
2007-3-2

最强王者 永恒钻石 尊贵铂金 新时政 10周年纪念 20周年纪念

板凳
发表于 2009-12-8 10:58:34 |只看该作者 微信分享
For non-IT people, just say "Hello World"

使用道具 举报

Rank: 13Rank: 13Rank: 13Rank: 13

升级  31.76%

UID
98138
热情
1559
人气
2049
主题
12
帖子
9404
精华
19
积分
6588
阅读权限
30
注册时间
2006-11-19
地板
发表于 2009-12-8 11:02:13 |只看该作者 微信分享
Hello World~~~~~~~~~
Must be humbling to suck on so many level~~~BAZINGA~~~~~~

使用道具 举报

Rank: 5Rank: 5

升级  38%

UID
199955
热情
29
人气
30
主题
0
帖子
207
精华
0
积分
138
阅读权限
20
注册时间
2009-9-17
5#分享本帖地址
发表于 2009-12-8 11:17:13 |只看该作者 微信分享
http://www.gnu.org/fun/jokes/helloworld.html

High School/Jr.High

10 PRINT "HELLO WORLD"
20 END

萨米 发表于 2009-12-8 10:47


QBASIC... remembering the old days!!!

使用道具 举报

Rank: 6Rank: 6

升级  87%

UID
152601
热情
145
人气
142
主题
3
帖子
620
精华
0
积分
461
阅读权限
20
注册时间
2008-8-16
6#分享本帖地址
发表于 2009-12-8 11:29:07 |只看该作者 微信分享
还真有点挺怀念的,多年前来到NZ不久,上大学后学的第一个Java编程写的就是Hello World...

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

手机版| 联系论坛客服| 广告服务| 招贤纳士| 新西兰天维网

GMT+13, 2024-11-8 10:48 , Processed in 0.017777 second(s), 15 queries .

Powered by Discuz! X2 Licensed

Copyright 2001- Sky Media Limited, All Rights Reserved.

回顶部