Главная » 2008 » Декабрь » 23
The Evolution of a Programmer
Эволюционный рост программиста!! чИТАТЬ ДО КОНЦА!!
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[i]);
printf("\n");
}

Seasoned professional

#include <iostream.h>
#include <string.h>

class string
{
private: < ... Читать дальше »

Категория: Приколы | Просмотров: 819 | Добавил: posha | Дата: 23.12.2008 | Комментарии (4)