Dev-C++

Dev-C++

官网:

http://orwelldevcpp.blogspot.com/

 

最新版本:

Version 5.11 - 27 April 2015

 

下载链接:

https://sourceforge.net/projects/orwelldevcpp/files/latest/download

 

特色:

Features

  • TDM-GCC 4.9.2 32/64bit
  • Syntax highlighting
  • Code completion
  • Code insight
  • Editable shortcuts
  • GPROF profiling
  • GDB debugging
  • AStyle code formatting
  • Devpak IDE extensions
  • External tools

 

新建文件:

选择左上角文件菜单,依次选择新建->源代码

 

 

或者,采用工具栏的按钮新建

 

 

 

在空白文件中输入如下代码:

#include <iostream>
using namespace std;

int main()
{
   cout << "Hello,C++!"<< endl;
   return 0;
}

 

保存源码文件

在上方菜单栏中选择文件 --> 保存,或者按下Ctrl+S组合键,都可以保存源文件。

 

下图左侧箭头为 运行, 右侧为调试

 

 

 

 

 

posted @ 2022-07-21 11:45  emanlee  阅读(747)  评论(0编辑  收藏  举报