首页 > 代码库 > C++之hello world

C++之hello world

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


int main()
{
cout << "hello world" <<endl;
cin.get();      
return 0;
}

 

 

ctrl+f5

C++之hello world