Monday, November 10, 2014

Hello, world!

为准备面试、整理归纳编程题目而开这个博客。希望通过努力能水到渠成,拿到心仪的offer。按照程序员惯例,开篇便是Hello world! 第一次写程序博客,第一个难题就是如何在博客上format code。搜寻了下伟大的谷歌,找到了两个在线format code的资源:

http://hilite.me

1
2
3
4
int main() {
    std::cout << "Hello, world!" << std::endl;
    return 0;
}

http://codeformatter.blogspot.com

1:  int main() {  
2:    std::cout << "Hello, world!" << std::endl;  
3:    return 0;  
4:  }  

比较下来更喜欢hilite.me的风格,为保持统一,之后就一直用它了!

No comments:

Post a Comment