用VS 写c++ 的第一个hello world
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用VS 写c++ 的第一个hello world相关的知识,希望对你有一定的参考价值。
// 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;
}
以上是关于用VS 写c++ 的第一个hello world的主要内容,如果未能解决你的问题,请参考以下文章