我的c++学习(1)hello world!

// texthello.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
using namespace std;
int main(void)
{
    cout<<"hello world!"<<endl;
return 0;
}
原文地址:https://www.cnblogs.com/yangwujun/p/3305436.html