| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1044 人关注过本帖
标题:错误显示'des' : undeclared identifier,错哪了?
取消只看楼主 加入收藏
黄淮学院小哥
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2017-3-13
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:3 
错误显示'des' : undeclared identifier,错哪了?
#ifndef POINT_H_
#define POINT_H_
using namespace std;
class Point
{
private:
    int x;
    int y;
public:
    Point(int x=0,int y=0):    x(x),y(y)
    {
        cout<<"."<<endl;
    }
    void in();
    void out();
    double des(Point,Point);
};
#endif

#include<iostream>
#include<math.h>
#include"point.h"
int main()
{
    Point p1,p2;
    p2.in();
    p1.out();
    p2.out();
    cout<<des(p1,p2);
        return 0;
}
void Point::in ()
{
    cin>>x>>y;
}
void Point::out()
{
    cout<<"("<<x<<","<<y<<")"<<endl;
}
double Point::des(Point p1,Point p2)
{
    int a=0;
    a=sqrt(pow(p1.x-p2.x,2)+pow(p1.y-p2.y,2));
    return a;
}
搜索更多相关主题的帖子: private include public double return 
2017-03-13 16:10
黄淮学院小哥
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2017-3-13
收藏
得分:0 
2017-03-13 16:30
黄淮学院小哥
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2017-3-13
收藏
得分:0 
回复 3楼 吹水佬
就是那里错的,怎么改呢?
2017-03-14 10:07
黄淮学院小哥
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2017-3-13
收藏
得分:0 
明白了,谢谢大神相助!
2017-03-14 11:39
快速回复:错误显示'des' : undeclared identifier,错哪了?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024922 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved