== 注释 == C++支持两种风格的注释(Comment):C风格/*…*/和C++风格// {{{#!cplusplus /* this is my first c++ program*/ int main() { int i = 0; /*...*/ } }}} 注意:C风格的注释不能嵌套(比如:/* …/*…*/…*/) {{{#!cplusplus // 从此开始到行尾都是注释 int main() { int age; //age of student } }}} 注意:不要在注释和字符串以外输入中文,尤其是中文标点 ---- CategoryCpp