用dev-c++运行c++时总是出现类似如图的语句是怎么回事

用dev-c++运行c++时总是出现类似如图的语句是怎么回事源代码如下#include<iostream>#include<math.h>usingnamespacest... 用dev-c++运行c++时总是出现类似如图的语句是怎么回事
源代码如下
#include<iostream>#include<math.h>using namespace std;class point{ float x, y;public: point(float xx, float yy) { cout << "point构造函数" << endl; x = xx; y = yy; } point(point &p) { x = p.x; y = p.y; cout << "point拷贝构造函数" << endl; } float getx() { return x; } float gety() { return y; }};class Distance{ point p1, p2; double dist;public: Distance(point a, point b); double getdis() { return dist; }};Distance::Distance(point a, point b) :p1(a), p2(b){ cout << "distance构造函数" << endl; double x = double(p1.getx() - p2.getx()); double y = double(p1.gety() - p2.gety()); dist = sqrt(x*x + y*y);}int main(){ point myp1(1, 1), myp2(4, 5); Distance myd(myp1, myp2); cout << "距离是:" << myd.getdis() << endl;}
展开
 我来答
ilvwhy
2015-11-08 · TA获得超过1.3万个赞
知道大有可为答主
回答量:1.7万
采纳率:81%
帮助的人:2821万
展开全部
告诉你程序执行了多少时间,返回值是多少,帮助开发人员判断程序运行的状态。
追问
请问怎么样设置不显示它?
它的意思我还是看得懂的
追答
这个只有在IDE环境中运行程序才会有,你直接在命令行下执行编译出来的程序是不会有这个的。
我没有装DEV-C所以不知道选项在哪里。你可以在选项里面找一下。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式