免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3112 | 回复: 15
打印 上一主题 下一主题

Hello World 大观园^_^!! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-09-23 11:51 |只看该作者 |倒序浏览
一不小于在gnu网站上找到的一个写helloworld的网页: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.h>

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


Seasoned professional


#include <iostream.h>
#include <string.h>
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:perator=(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.h>
#include <stdlib.h>
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.h>
#include <string.h>
#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

论坛徽章:
0
2 [报告]
发表于 2007-09-23 13:46 |只看该作者
用[code][/code]包一下吧

论坛徽章:
1
15-16赛季CBA联赛之吉林
日期:2018-05-23 14:31:12
3 [报告]
发表于 2007-09-24 14:12 |只看该作者
#include <stdio.h>

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


请问一下,这个程序正确吗??

怎么我运行该程序得到的结果会是两个 “xx”呢????

论坛徽章:
0
4 [报告]
发表于 2007-09-24 14:16 |只看该作者
printf("%s",  message);

论坛徽章:
0
5 [报告]
发表于 2007-09-24 14:18 |只看该作者
汗,怎么message后面的打印不出来。。。

论坛徽章:
1
15-16赛季CBA联赛之吉林
日期:2018-05-23 14:31:12
6 [报告]
发表于 2007-09-24 14:18 |只看该作者
原帖由 Cu_fans 于 2007-9-24 14:16 发表
printf("%s",  message);


可不可以说清楚一点啊??

论坛徽章:
0
7 [报告]
发表于 2007-09-24 14:18 |只看该作者
message

论坛徽章:
0
8 [报告]
发表于 2007-09-24 14:19 |只看该作者
我靠,这论坛咋搞的。。。

后面的那个数组下标打印不出来。。

论坛徽章:
0
9 [报告]
发表于 2007-09-24 15:26 |只看该作者
:wink:

其实,是个笑话~

呵呵

论坛徽章:
0
10 [报告]
发表于 2007-09-24 15:38 |只看该作者
我都说了,让楼主用[code][/code]包起来,楼主就是不改
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP