C++ Hello World

C++ Hello World

 

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

 

你可能感兴趣的:(C++ Hello World)