C++第一章:输出Hello World

编写一个简单的程序:

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

int _tmain(int argc, _TCHAR* argv[])
{

    cout <<"Hello World"<<endl;
    
    return 0;
}

输出结果:

猜你喜欢

转载自www.cnblogs.com/zhuchunlin/p/10609503.html