Hello World
开博第一篇,hello world!
#include <iostream> using namespace std; class say { public: say() { cout << "Hello "; } ~say() { cout << "world!"; } }hello; int main() { return 0; }
使用过下面两个博客,开学找工作,把以前学的一些东西,重新整理一下发布在这里。
http://hi.baidu.com/new/xun1573
http://blog.csdn.net/luxiaoxun