用VS 写c++ 的第一个hello world
2018-06-16 12:46 陈徐永 阅读(927) 评论(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;
}
浙公网安备 33010602011771号