-
-
0
-
2推荐使用小龙 Dev-C++:https://devcpp.gitee.io 主要优点: 1、保存文件时自动整理源程序文件的排版格式; 2、编译出错信息自动翻译成中文
-
2https://devcpp.gitee.io/ 小龙 Dev-C++ 是在原有的 Dev-C++ 最终版本 v5.11 基础上继续开发的分支版本。 主要特性: - 安装简单:安装完毕即可使用,无需额外配置; - 使用方便:可插入常用代码片段,快速开始编程; - 支持单文件开发和多文件项目开发; - 可对代码自动格式化,确保代码书写规范; - 编译出错信息自动翻译为中文显示; - 调试时自动显示函数参数和局部变量的值; - 支持使用图形函数库 EGE 和 EasyX。 目前最新的版本是 5.16c(2022 年 2 月发布)
-
0
-
0
-
5
-
2
-
8请教,DEVC++用哪个版本好?
-
3上次用的时候忘了点的什么错误列表就消失了。。怎么查看错误列表?
-
1
-
1
-
7最近换了win10系统,但找不到c++的下载地址,求助
-
2
-
1example里面的hello.c #include <stdio.h> #include <stdlib.h> main() { printf("He
-
0
-
0devC++有人接手继续开发了
-
0
-
1
-
0
-
1
-
1软件不一样,都是c++代码也不一样吗?
-
4
-
0现在还是用clion去吧
-
0void Game::drawBulletToNull() { for(int i=0; i<10; i++) if( bullet[i].Y != 30 ) { COORD pos={bullet[i].X, bullet[i].Y+1}; SetPos(pos); cout<<" "; } } void Game::initEnemy() { COORD a={1, 1}; COORD b={45, 15}; for(int i=0; i<8; i++) { enemy[i].position[0] = random(a, b); enemy[i].position[1].X = enemy[i].position[0].X + 3; enemy[i].position[1].Y = enemy[i].position[0].Y + 2; } } void Game::drawEnemy() { for(int i=0; i<8; i++) drawFrame(enemy[i].position[0], enemy[i].position[1], '-', '|'); } void Game::drawEnemyToNull() { for(int i=0; i<8; i++) { draw
-
0为什么点了调试之后断点不会变蓝,而且没有提示输入
-
5在什么地方可以下载到dec-c++?
-
0
-
2在dev-c++5.7.1中,程序如下: #include <stdio.h> int main(void) { float a=9876543210123456789.0; double b=9876543210123456789.0,d; long double c=9876543210123456789.0; d=(double)c; printf("float is %2dB\n",sizeof(float)); printf("double is %2dB\n",sizeof(double)); printf("long double is %2dB\n",sizeof(long double)); printf("float a = %30.10f\n",a); printf("double b = %30.10lf\n",b); printf("long double c = %30.10Lf\n",c); printf("double d = c = %30.10Lf\n",d); } 运行结果为: float is 4B double is 8B long d
-
0devc++在使用指针的时候,什么时候使用箭头,什么时候使用点?请详细讲解一下