首页 > 就业 > 笔试

C++面试笔试题目

C++面试笔试题目



实用C++面试笔试题目

  定义一结构体变量,用其表示点坐标,并输入两点坐标,求两点之间的距离

  解:#include

  #include

  struct point

  {

  float x;

  float y;

  };

  main()

  { float dis;

  struct point pt1,pt2;

  printf(“input point1.x:”);

  scanf(“%f”,&pt1.x);

  printf(“input point1.y:”);

  scanf(“%f”,&pt1.y);

  printf(“input point2.x:”);

  scanf(“%f”,&pt2.x);

  printf(“input point2.y:”);

  scanf(“%f”,&pt2.y);

  dis=sqrt((pt1.x-pt2.x)*(pt1.x-pt2.x)+(pt1.y-pt2.y)*(pt1.y-pt2.y));

  printf(“The distance of the two points is:%f”,dis);

  }

    版权声明:此文自动收集于网络,若有来源错误或者侵犯您的合法权益,您可通过邮箱与我们取得联系,我们将及时进行处理。

    本文地址:https://www.gunzhua.com/jiuye/bishi/26848.html

相关内容

热门阅读
随机推荐