wizard_eason

统计

留言簿(1)

阅读排行榜

评论排行榜

2009年4月11日 #

C++ Hello World

 

 1#include <iostream>   
 2using namespace std;   
 3  
 4int main()   
 5{   
 6    cout << "Hello World" << endl;   
 7  
 8    // 使程序执行暂停   
 9    // 从键盘接受输入完毕到缓冲,   
10    // cin.get()从缓冲中读取一个字符   
11    cin.get();   
12    //system("pause");   
13    return 0;   
14}
  
15

 

posted @ 2009-04-11 10:53 eason_chen 阅读(242) | 评论 (0)编辑 收藏

仅列出标题