希望小说站可以建立起来

孙黎明一直爱好小说,肯定对小说站比较了解了,希望他能独立建立好小说站。

小说站测试地址:http://novel.newzku.info/

Posted in other | Leave a comment

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Hello world!是一个很神奇的单词,因为接触计算机语言大多是从Hello world开始的,然后就有魔力一样让你进入一个不可思议的世界,就像一个人降生,进入一个美丽的世界。你好,世界!

各种语言的Hello World

C
#include <stdio.h>
int main()
{
printf(“Hello World!\n”);
return 0;
}

C++

#include <iostream>
using namespace std;
int main()
{
cout<<”Hello World!”<<endl;
return 0;
}

php
echo “Hello World!”;

Python
print “Hello World!”

计算机语言太多了,有兴趣可以看这个 http://www.roesler-ac.de/wolfram/hello.htm

Posted in other | 1 Comment