Dev-C++编程->环境配置

  由于家里电脑是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;  }  

编译后 运行得:

 

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

 


 

  

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章