The first time

2129 ワード

朝起きて昨夜申し込んだブログが開通したことに気づき、(^o^)/~記念に、コード学のhello worldを打ったばかりのように、c,c++でプログラムを書いて記念します.O(∩∩)O~ハハハハ.
1 /*C hello world  */

2 #include <stdio.h>

3 

4 int main() {

5     printf("hello world
"); 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 }

スラグ油、宿題もしなければなりませんね.