Settings | Sign in | Sign up

There are currently 2 posts.

【VS2013】C++控制台程序-Hello World

Floor 1 巨大八爪鱼 4/4/15 11:35
// ConsoleApplication2.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    cout << "Hello World!" << endl;
    system("pause");
    return 0;
}

Floor 2 巨大八爪鱼 4/4/15 11:36

Content converter:

Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.