代码改变世界

用VS 写c++ 的第一个hello world

2018-06-16 12:46  陈徐永  阅读(918)  评论(0编辑  收藏  举报

// ConsoleApplication3.cpp: 定义控制台应用程序的入口点。
//

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

 

int main()
{
printf("kkkk");
if (1) {

printf("kkkk");

}
cout << "Hello World";
system("pause");
return 0;
}