Look Back
someone passed away
someone was born
someone had gone
someone is in
once I had fallen in
now I have got through
time passes by
memory fades away
I am not myself
I am still me
someone passed away
someone was born
someone had gone
someone is in
once I had fallen in
now I have got through
time passes by
memory fades away
I am not myself
I am still me
use direction keys to rotate block into hole!
thinking harder!
[swfobj src=“http://chillyc.info/wp-content/uploads/2010/01/bloxorz_miniclip.swf” alt=“use direction keys to rotate block into hole!”]
http://www.kongregate.com/games/Coolio_Niato/light-bot
this game is fitable for programmer.
[swfobj src=“http://chillyc.info/wp-content/uploads/2010/01/light-bot.swf” alt=“http://www.kongregate.com/games/Coolio_Niato/light-bot”]
Write first formula using latex here:
α+β=xδ+3/y
wooo~~~~
1 | #include<iostream> |
I use WP-synhighlight plugin to do this. I like it.
I have found some funny picture in web. Now I share them:
How to play a computer game:
How to escape from the mouth of wolf
can pig swim?
Do you know lots of programming language than him?
How to find Osama bin Laden?
Have you seen the smiles of those people? rotate 180 Degree!
how to get back your stolened? If you learned Chinese, you will know the meaning of this letter.
本人的网站要走国际化的道路了~
先建个个人网站玩玩~
网址是: http://chillyc.info
…个人认为…info的域名…还是差了点,毕竟有4个char
再输入一遍以提高检索率: http://chillyc.info
不过这个网站才刚刚开通,所以并没有啥东西。
如果你定义了个模板函数例如:
template
那么在调用时写 write
就有可能出现expected primary-expression before
"double"的错误。这是因为有可能有的头文件中有write这个函数,并且它不是模板函数,那么就会导致expected primary-
expression before错误。只要上面改动一下函数名就可以解决。
write(“Hello world!”).
variable 'std:ofstream’ has initializer but incomplete type
或者是 variable 'std:ifstream’ has initializer but incomplete type
其原因是因为没有包含fstream这个头文件。
#include
main() { fstream f(“filename”); f << 20; f.close(); }
上面这段代码如果没有那个