首页 > 编程语言 > 详细

C++之hello world

时间:2014-10-29 16:48:19      阅读:282      评论:0      收藏:0      [点我收藏+]

#include "stdafx.h"
#include <iostream>
using namespace std;


int main()
{
cout << "hello world" <<endl;
cin.get();      
return 0;
}

 

 

ctrl+f5

C++之hello world

原文:http://www.cnblogs.com/alazalazalaz/p/4059775.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!