用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;
}

猜你喜欢

转载自www.cnblogs.com/StevenChancxy/p/9190321.html