由于家里电脑是win8系统,查了一下为x64的操作系统,由于打算快点搭一个C++编程环境,就选DEV C++了。

http://pan.baidu.com/share/link?shareid=513975&uk=741093197  下载地址:

#include <iostream>    /* run this program using the console pauser or add your own getch, system("pause") or input loop */    int main(int argc, char** argv) {  	  	std::cout<<"hello world !";  	//system("pause");   	return 0;  }  

编译后 运行得:

 

接下来开始写代码了。。。。