• c语言中用结构体表示点的坐标,并计算两点之间的距离


    c语言中用结构体表示点的坐标,并计算两点之间的距离

    1、

    #include <stdio.h>
    #include <math.h>
    
    #define sqr(x) ((x) * (x))
    
    typedef struct{
        double x;
        double y;
    }Point;
    
    double dist(Point p1, Point p2)  //此处没有使用结构体对象的指针作为形参,是因为不需要对传入的结构体的成员进行修改 
    {
        return sqrt(sqr(p1.x - p2.x) + sqr(p1.y - p2.y));
    }
    
    int main(void)
    {
        Point a, b;
        printf("a - x:  "); scanf("%lf", &a.x);
        printf("a - y:  "); scanf("%lf", &a.y);
        printf("b - x:  "); scanf("%lf", &b.x);
        printf("b - y:  "); scanf("%lf", &b.y);
        
        printf("distance between a and b:  %.2f
    ", dist(a, b));
        
        return 0;
    }

    #include <stdio.h>
    #include <math.h>
    
    #define sqr(x) ((x) * (x))
    
    typedef struct{
        double x;
        double y;
    }Point;
    
    double dis(Point *p1, Point *p2)
    {
        return sqrt(sqr((*p1).x - (*p2).x) + sqr((*p1).y - (*p2).y));    
    } 
    
    int main(void)
    {
        Point a, b;
        
        printf("a - x:  "); scanf("%lf", &a.x);
        printf("a - y:  "); scanf("%lf", &a.y);
        printf("b - x:  "); scanf("%lf", &b.x);
        printf("b - y:  "); scanf("%lf", &b.y);
        
        printf("distanbe between a and b: %.2f
    ", dis(&a, &b));
        
        return 0;
    }

     ↓

    #include <stdio.h>
    #include <math.h>
    
    #define sqr(x) ((x) * (x))
    
    typedef struct{
        double x;
        double y;
    }Point;
    
    double dis(Point *p1, Point *p2)
    {
        return sqrt(sqr(p1 -> x - p2 -> x) + sqr(p1 -> y - p2 -> y));    
    } 
    
    int main(void)
    {
        Point a, b;
        
        printf("a - x:  "); scanf("%lf", &a.x);
        printf("a - y:  "); scanf("%lf", &a.y);
        printf("b - x:  "); scanf("%lf", &b.x);
        printf("b - y:  "); scanf("%lf", &b.y);
        
        printf("distanbe between a and b: %.2f
    ", dis(&a, &b));
        
        return 0;
    }

  • 相关阅读:
    常见字体图标库——font-awesome
    windows server 2012显示桌面图标
    SE 2014年4月14日
    SE 2014年4月13日
    PPP协议总结
    SE 2014年4月12日
    django运行时报错
    linux-python在vim下的自动补全功能
    python发邮件
    背景透明兼容
  • 原文地址:https://www.cnblogs.com/liujiaxin2018/p/14853403.html
Copyright © 2020-2023  润新知