The first time

    早上起来发现昨晚申请的博客开通了,\(^o^)/~纪念下,就像刚打代码学的hello world一样,用c,c++写一个程序纪念下。O(∩_∩)O~哈哈哈哈哈。

1 /*C hello world程序*/
2 #include <stdio.h>
3 
4 int main() {
5     printf("hello world\n");
6     
7     return 0;
8 }
1 /*C++ hello world程序*/
2 #include <iostream>
3 using namespace std;
4 
5 int main() {
6     cout << "hello world" << endl;
7     
8     return 0;
9 }

       渣油,还要做作业呢!

posted @ 2014-11-09 08:52  winray  阅读(170)  评论(0编辑  收藏  举报